彗星图是一个动画图, 其中一个圆圈在屏幕上跟踪数据点。
句法
comet(y) // It displays a comet plot of the vector y.comet(x, y) // It displays a comet plot of vector y versus vector x.comet(x, y, p) // It specifies a comet body of length p*length(y). p defaults to 0.1.
例子
y=t sint, 0≤t≤10πq=linspace(0, 10*pi, 2000);
y=q.*sin(q);
comet (q, y)
【MATLAB函数Comet()】输出
文章图片
推荐阅读
- MATLAB函数contour()
- MATLAB函数stem()
- MATLAB函数Pie()
- MATLAB函数area()
- MATLAB函数hist()
- MATLAB函数barh()
- MATLAB函数errorbar()
- MATLAB函数plotyy()
- MATLAB 函数fill()