Azzera filtri
Azzera filtri

i need to plot a line in 3D scatter plot

39 visualizzazioni (ultimi 30 giorni)
i have created a scatter plot with scatter3. now without clearing this plot I need to draw a line in the same graph. when I put plot3 after scatter3 it clears the plot and then gives me the plot3 graph without the scatter points
david

Risposta accettata

Star Strider
Star Strider il 28 Set 2018
Use the hold (link) function to plot both to the same axes.
figure
scatter3( ... )
hold on
plot3( ... )
hold off
grid on
  4 Commenti
Cristián Vera
Cristián Vera il 21 Mar 2020
How can I plot with scatter(X,Y,pointsize,Z,'filled') using '-o' plot lines? Only uses circles.
Star Strider
Star Strider il 21 Mar 2020
@Cristián Vera — Use plot rather than scattter to plot lines (with or without markers). What you want to do is not obvious, so perhaps using both (with the hold function) will do what you want. Experiment!

Accedi per commentare.

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by