how to plot ?

3 views (last 30 days)
Megha
Megha on 21 Feb 2021
Edited: Megha on 25 Feb 2021
How to plot the data with the size:
  2 Comments
Cris LaPierre
Cris LaPierre on 22 Feb 2021
What type of plot do you want?
Megha
Megha on 22 Feb 2021
Edited: KSSV on 22 Feb 2021

Sign in to comment.

Accepted Answer

KSSV
KSSV on 22 Feb 2021
Read about pcolor, surf.
[X,Y,Z] = peaks(50) ;
figure
surf(X,Y,Z)
figure
pcolor(X,Y,Z)
  5 Comments
KSSV
KSSV on 22 Feb 2021
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 on 22 Feb 2021
That's great....thanks is accepting/ voting the answer.. :)

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!