当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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 t
t=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 Bar()



相关用法


注:本文由纯净天空筛选整理自 MATLAB Bar()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。