Plotting a colored surface in 2D
Mostrar comentarios más antiguos
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
Respuesta aceptada
Más respuestas (3)
Abdullah Talib
el 14 de Nov. de 2018
you can also use
imagesc(x,y,u); colormap jet; axis xy;
2 comentarios
yogendra jaiswara
el 2 de Oct. de 2022
Nice
Yinghui Hu
el 18 de Ag. de 2023
it is a great help. Just what I would like to have!
Vijendra Singh
el 21 de Dic. de 2020
0 votos
syms x y y=sin(x) ezplot(x,y)
Gul Rahman Abdulrahimzai
el 18 de Nov. de 2022
0 votos
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
Categorías
Más información sobre Surface and Mesh Plots en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!