Plot a 3d surface

1 次查看(过去 30 天)
Niloofar Moosavi
Niloofar Moosavi 2022-8-19
I need to plot exactly this photo from my exel data. What is it's code? i what z scale as the picture
  2 个评论
Rik
Rik 2022-8-19
Have a read here and here. It will greatly improve your chances of getting an answer.
It looks like you can use surf to get a plot like this. What have you tried so far?
Niloofar Moosavi
Niloofar Moosavi 2022-8-19
I didn't it by mesh but I want a object exactly like my picture

请先登录,再进行评论。

回答(1 个)

KSSV
KSSV 2022-8-19
T = readtable('https://in.mathworks.com/matlabcentral/answers/uploaded_files/1101840/Ex12.xlsx') ;
data = table2array(T) ;
x = data(1,2:end) ;
y = data(2:end,1) ;
Z = data(2:end,2:end) ;
mesh(x,y,Z') ;
  5 个评论
Rik
Rik 2022-8-19
Have you read the documentation to see what properties you can edit?
Niloofar Moosavi
Niloofar Moosavi 2022-8-19
Yes thanks! And is there a way to change grid?

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Surface and Mesh Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by