how to plot a matrix values in 3d plot
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
abdelmadjid benrabah
il 26 Set 2021
Commentato: Star Strider
il 26 Set 2021
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.
0 Commenti
Risposta accettata
Star Strider
il 26 Set 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 Commenti
Star Strider
il 26 Set 2021
As always, my pleasure!
I will do my best to provied useful solutions.
.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Annotations in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


