plot、bar、stem、area函数绘图
生活随笔
收集整理的這篇文章主要介紹了
plot、bar、stem、area函数绘图
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
clc
clear
close all
x = 2000:2005;
y = [1 2 0.4 6 9 3];subplot(2,2,1)
plot(x,y);
title('plot');
xlabel('x');
ylabel('y');subplot(2,2,2)
bar(x,y);
title('bar'); %繪制條形圖
xlabel('x');
ylabel('y');subplot(2,2,3)
area(x,y);
title('area'); %填充區(qū)二維繪圖
xlabel('x');
ylabel('y');subplot(2,2,4)
stem(x,y);
title('stem'); %繪制離散數(shù)據(jù)序列
xlabel('x');
ylabel('y');
《新程序員》:云原生和全面數(shù)字化實踐50位技術專家共同創(chuàng)作,文字、視頻、音頻交互閱讀
總結
以上是生活随笔為你收集整理的plot、bar、stem、area函数绘图的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: matlan数据分析库函数
- 下一篇: 遗传算法的应用步骤