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일

0 개 추천

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
Niloofar Moosavi 2022년 8월 19일
Thanks but value of z in not like my picture
Rik
Rik 2022년 8월 19일
You can use the XTickLabel property of the axes object.
Niloofar Moosavi
Niloofar Moosavi 2022년 8월 19일
And how can I mesh the object like my picture?
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?

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Polar Plots에 대해 자세히 알아보기

질문:

2022년 8월 19일

댓글:

2022년 8월 19일

Community Treasure Hunt

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

Start Hunting!

Translated by