【MATLAB函数Bar()】条形图是其中每个点都由垂直条或水平条表示的图。
句法
bar(y) // It creates a bar graph with one bar for each element in y.bar (x, y) // This function creates a vertical bar plot, with the values in x used to label each bar and the values in y used to determine the height of the bar.
例子
创建条形图
r^2=2 sin 5t, 0≤t≤2πy = r sin tt=linspace (0, 2*pi, 200);
r=sqrt(abs(2*sin(5*t)));
y=r.*sin(t);
bar (t, y)axis ([0 pi 0 inf]);
输出
文章图片
推荐阅读
- MATLAB 函数fill()
- MATLAB绘图操作详解
- MATLAB 2D极坐标绘图Plots()
- MATLAB 函数Semilogy()
- MATLAB 函数loglog()
- MATLAB 2D函数Semilogx()
- MATLAB 2-D绘图
- MATLAB匿名函数
- MATLAB中的稀疏数组