當前位置: 首頁>>編程示例 >>用法及示例精選 >>正文


MATLAB ribbon()用法及代碼示例

它創建了一個函數區圖。

用法

ribbon(Y) // It plots the columns of Y as separate three-dimensional ribbons using
X = 1:size(Y,1).
ribbon(X,Y) // It plots X versus the columns of Y as three-dimensional strips. X and Y are vectors of a similar size or matrices of the same size. X can be the row or a column vector, and Y a matrix with length(X) rows.
ribbon(X,Y,width) // It specifies the width of the ribbons. The default is 0.75.
ribbon(axes_handle,...) // It plots into the axes with handle axes_handle instead of the current axes (gca).
h = ribbon(...) // It returns a vector of handles to surface graphics objects. ribbon returns one handle per strip.

示例

創建函數區圖

2-D 曲線作為 3-D 中的色帶。

y_1=sin?(t),y_2=e^(-.15t) sin?(t)
y_3=e^(-.8t) sin?(t)
for 0≤t≤5π
t=linspace (0, 5*pi, 100);
y1=sin(t);
y2=exp(-.15*t).*sin(t);
y3=exp(-.8*t).*sin(t);
y=[y1;y2;y3];
rib_width=0.2;
ribbon(t',y',rib_width)

輸出:

MATLAB ribbon()



相關用法


注:本文由純淨天空篩選整理自 MATLAB ribbon()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。