How to change the marker type of a 3D scatterplot with respect to the labels?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi,
I have the below 3D scatterplot. I want to change the marker type with respect to the different labels (e.g. plot.markertype=['+','*'];) , but I got the error No public property markertype exists for class matlab.graphics.chart.primitive.Scatter. How can I change the marker type?
Thanks!
x=[1,2,3,4]';
y=[5,2,7,8]';
z=[9,8,4,2]';
labels=[0,0,1,1]';
figure
color=[not(labels), labels, 0*labels];
plot=scatter3(x,y,z,40,color);
0 comentarios
Respuestas (0)
Ver también
Categorías
Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!