フィルターのクリア

how to plot ?

2 ビュー (過去 30 日間)
Megha
Megha 2021 年 2 月 21 日
編集済み: Megha 2021 年 2 月 25 日
How to plot the data with the size:
  2 件のコメント
Cris LaPierre
Cris LaPierre 2021 年 2 月 22 日
What type of plot do you want?
Megha
Megha 2021 年 2 月 22 日
編集済み: KSSV 2021 年 2 月 22 日

サインインしてコメントする。

採用された回答

KSSV
KSSV 2021 年 2 月 22 日
Read about pcolor, surf.
[X,Y,Z] = peaks(50) ;
figure
surf(X,Y,Z)
figure
pcolor(X,Y,Z)
  5 件のコメント
KSSV
KSSV 2021 年 2 月 22 日
load E2.mat ;
load T_hope1.mat ;
load FPSA2.mat ;
[m,n] = size(FPSA2) ;
x = repmat(T_hope1,1,n) ; % I hope your hopes are met :)
y = E2 ;
z = FPSA2 ;
pcolor(x,y,z)
shading interp
colorbar
KSSV
KSSV 2021 年 2 月 22 日
That's great....thanks is accepting/ voting the answer.. :)

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAnnotations についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by