how to plot a matrix values in 3d plot

80 views (last 30 days)
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.

Accepted Answer

Star Strider
Star Strider on 26 Sep 2021
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 Comments
abdelmadjid benrabah
abdelmadjid benrabah on 26 Sep 2021
thank you so much,
I got it, I will see if I need someting else I will contact you.
Star Strider
Star Strider on 26 Sep 2021
As always, my pleasure!
I will do my best to provied useful solutions.
.

Sign in to comment.

More Answers (0)

Categories

Find more on Line Plots in Help Center and File Exchange

Products


Release

R2020a

Community Treasure Hunt

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

Start Hunting!