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


MATLAB contour3()用法及代碼示例

contour3 生成在矩形網格上定義的表麵的 3 維等高線圖。

用法

contour3(Z) // It draws a contour plot of matrix Z in a three-dimensional view. Z is interpreted as heights concerning the x-y plane. 
contour3(Z,n) // It draws a contour plot of matrix Z with n contour levels in a three-dimensional view.
contour3(Z,v) // It draws a contour plot of the matrix Z with contour lines at the values specified in vector v. The number of contour levels is similar to length(v). 
contour3(X,Y,Z) // It specifies the x and y coordinates for the values in Z.
contour3(X,Y,Z,n) 
contour3(X,Y,Z,v)
contour3(...,LineSpec) // It draws the contours using the line type and color specified by Line Spec.
[C,h] = contour3(...) // It returns the contour matrix C as described in the function contour c and a column vector containing handles to graphics objects.

示例

3-D 等高線圖

z=-5/(1+x^2+y^2 )
|x|≤3,|y|≤3.
r=linspace (-3, 3, 50);
[x, y]=meshgrid (r, r);
z= -5./(1+x.^2+y.^2);
contour3 (x, y, z)

輸出:

MATLAB contour3()



相關用法


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