chose the marker with plot3d
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
ikram loued
le 10 Août 2022
Commenté : the cyclist
le 15 Août 2022
Hello, i want to plot a 3d point with - marker. when i use plot3d(x,y,z,'-black') , I don't see anything on the figure but with plot(x,y,z,'.black') i have the right figure. could anyone tell me why please?
(I use matlab 2019b).
0 commentaires
Réponse acceptée
the cyclist
le 10 Août 2022
It looks like you used a hyphen instead of an underscore.
x = 1:5;
y = rand(1,5);
z = rand(1,5);
figure
plot3(x,y,z,'black','Marker','_','MarkerSize',16)
2 commentaires
the cyclist
le 15 Août 2022
Hm. You can see that the code works here [R2022a].
You mention that you are using R2019b, so I guess it could be a bug that was fixed.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Line Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!