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


MATLAB pcolor()用法及代碼示例

偽彩色圖是由 C 保持顏色的矩形單元格陣列。

用法

pcolor(C) // It draw a pseudocolor plot. The items of C are linearly mapped to an index into the current colormap.
pcolor(X,Y,C) // It draw a pseudocolor plot of the items of C at the locations stated by X and Y. The plot is the logically rectangular, two-dimensional grid with vertices at the points [X(i,j), Y(i,j)]. 
h = pcolor(...) // It returns a handle to a surface graphic object.

示例

z^2=x^2+y^2-5 sin?(xy)
|x|≤2,|y|≤2.
r=-2:.2:2;
[X, Y]= meshgrid (r, r);
Z=X.^2- 5*sin(X.*Y)+Y.^2;
pcolor(Z), axis('off')
shading interp

輸出:

MATLAB pcolor()



相關用法


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