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


MATLAB Stairs()用法及代码示例


阶梯图可用于绘制数字 sampled-record 系统的时间历史图。

用法

stairs(Y) // It draws a stairstep plot of the items of Y. When Y is the vector, the x-axis scale range from 1 to the size(Y). When Y is the matrix, the x-axis scale range from 1 to the number of rows in Y
stairs(X,Y) // It plots X versus the columns of Y. X and Y are vectors of a similar size or matrices of a similar size. X can be the row or a column vector, and Y a matrix with length(X) rows.
stairs(...,LineSpec) // It specifies a-line style, marker symbol, and color for the plots.

示例

创建一个情节

r^2=2sin5t,0≤t≤2π
y= r sin t
t=linspace(0,2*pi,200);
r=sqrt(abs(2*sin(5*t)));
y=r.*sin(t);
stairs(t, y);
axis[0 pi 0 inf]);

输出:

MATLAB Stairs()



相关用法


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