matlab中stem函数用法
stem(Y) 将数据序列Y从x轴到数据值按照茎状形式画出,以圆圈终止。如果Y是一个矩阵,则将其每一列按照分隔方式画出。
stem(X,Y)在X的指定点处画出数据序列Y.
stem(...,'filled') 以实心的方式画出茎秆。
stem(...,'LINESPEC') 按指定的线型画出茎秆及其标记
例程:
a = rand(10,1); figure; stem(a,'filled')
更多编程相关内容,请关注php中文网编程教程栏目!
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!