Dear experts,
I have two vectors: x and y, and a function u(x,y) representing the temperature in the point (x,y). I want to see different temperatures as different colors, in the XY plane (see an example in the attached picture). i.e.- u will be given as color in the XY plane.
Will someone please help me understand what is the appropriate method to use in order to obtain such a plot?
Thanks in advance

 Akzeptierte Antwort

Azzi Abdelmalek
Azzi Abdelmalek am 26 Dez. 2014

8 Stimmen

Look at this example
x=1:0.1:4
y=1:0.1:4
[X,Y]=meshgrid(x,y)
Z=sin(X).^2+cos(Y).^2
surf(X,Y,Z)
view(2)

2 Kommentare

Johnson
Johnson am 26 Dez. 2014
Thanks a lot Azzi !
Ahmad Asghar
Ahmad Asghar am 5 Nov. 2018
View(2) ignores the last row and col. Any idea how to avoid that? Appending a zero row and col is not working :)

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (3)

Abdullah Talib
Abdullah Talib am 14 Nov. 2018

5 Stimmen

you can also use
imagesc(x,y,u); colormap jet; axis xy;

2 Kommentare

yogendra jaiswara
yogendra jaiswara am 2 Okt. 2022
Nice
Yinghui Hu
Yinghui Hu am 18 Aug. 2023
it is a great help. Just what I would like to have!

Melden Sie sich an, um zu kommentieren.

Vijendra Singh
Vijendra Singh am 21 Dez. 2020

0 Stimmen

syms x y y=sin(x) ezplot(x,y)
Gul Rahman Abdulrahimzai
Gul Rahman Abdulrahimzai am 18 Nov. 2022

0 Stimmen

0 <= x <= 1
3 <= y <= 4
z=a(〖xy)〗^0.7 cos⁡(ax)
Create plot. Use function surf
a=input ('a = ');
[x,y]= meshgrid(0:0.1:1,3:3.5:4);
z = a*exp(x*y)^0.7*cos(x*a);
surf(x,y,z);
What is the problem with this model plz

Community Treasure Hunt

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

Start Hunting!

Translated by