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!
