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


MATLAB stem3()用法及代码示例


三维茎图显示从 xy-plane 延伸的线。 z-position 描述数据值的圆圈(默认)或其他标记符号终止每个词干。

用法

stem3(Z) // It plots the data sequence Z as stems that extend from the xy-plane.
stem3(X, Y, Z) // It plots the data sequence Z at the value specified by X and Y. X, Y, and Z must be all be vectors or matrices of the same size.
stem3(...,'fill')  // It specifies whether to color the interior of the circle at the end of the stem.
stem3(...,LineSpec) // It specifies the line style, marker symbol, and color for the stems.
h = stem3(...) // It returns handles to line graphics objects.

示例

创建一个三维茎图来可视化两个变量的函数。

x=t, y=tsin(t)
z=e^t/10-1
for 0≤t≤6π
t=linspace(0,6*pi,200);
x=t; y=t.*sin(t);
z=exp(t/10)-1;
stem3(x, y, z,'filled')

输出:

MATLAB stem3()



相关用法


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