Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

Can i make 3d plot other than surf plot from these three values??? and how???

1 Ansicht (letzte 30 Tage)
ash
ash am 24 Jun. 2018
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
x=[0.2 0.2 0.5 0.5 0.8 0.9 ]; y=[0.8 0.9 0.8 0.9 0.9 0.5]; z=[0.9329 0.7530 0.9241 0.7058 1.0344 1.1110];

Antworten (1)

Star Strider
Star Strider am 24 Jun. 2018
This combines a line plot (with plot3) and a stem plot (using stem3):
figure
plot3(x, y, z)
hold on
stem3(x, y, z)
hold off
grid on

Diese Frage ist geschlossen.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by