Plot a 3d surface
古いコメントを表示
I need to plot exactly this photo from my exel data. What is it's code? i what z scale as the picture
回答 (1 件)
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 件のコメント
Niloofar Moosavi
2022 年 8 月 19 日
Rik
2022 年 8 月 19 日
You can use the XTickLabel property of the axes object.
Niloofar Moosavi
2022 年 8 月 19 日
Rik
2022 年 8 月 19 日
Have you read the documentation to see what properties you can edit?
Niloofar Moosavi
2022 年 8 月 19 日
カテゴリ
ヘルプ センター および File Exchange で Polar Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
