how to plot a matrix values in 3d plot

81 次查看(过去 30 天)
how to plot a matrix values in 3d plot
x=[0.2:0.5:0.8:1:1.5]
y=[0:0.2:0.4:0.6:0.8]
I got the matrix z=matrix(5x5) values from excel and each values correspond to x and y.

采纳的回答

Star Strider
Star Strider 2021-9-26
It would be nice to have the ‘z’ matrix as well, however in its absence, I will create one.
x=[0.2;0.5;0.8;1;1.5];
y=[0;0.2;0.4;0.6;0.8];
z = x*y.';;
figure
surf(x, y, z)
grid on
xlabel('x')
ylabel('y')
Use semicolons (;) not colons (:) to do vertical concatenation. They are two entirely different operators, and are used for entirely different purpoases.
.
  4 个评论
abdelmadjid benrabah
thank you so much,
I got it, I will see if I need someting else I will contact you.
Star Strider
Star Strider 2021-9-26
As always, my pleasure!
I will do my best to provied useful solutions.
.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Line Plots 的更多信息

产品


版本

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by