Plotting a colored surface in 2D
156 次查看(过去 30 天)
显示 更早的评论
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
0 个评论
采纳的回答
Azzi Abdelmalek
2014-12-26
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 个评论
Ahmad Asghar
2018-11-5
View(2) ignores the last row and col. Any idea how to avoid that? Appending a zero row and col is not working :)
更多回答(3 个)
Gul Rahman Abdulrahimzai
2022-11-18
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
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Surface and Mesh Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!