3D scatterplot with marker color as a function of fourth variable
27 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Toby Feld
am 7 Mai 2021
Kommentiert: Toby Feld
am 7 Mai 2021
Hello,
I would like to make a scatterplot with the variables x, y, and z. The color of the marker should be determined by the value of variable a.
What's the best way to do that?
Cheers,
Tim
1 Kommentar
Akzeptierte Antwort
Scott MacKenzie
am 7 Mai 2021
Bearbeitet: Scott MacKenzie
am 7 Mai 2021
Assuming you want a separate color for each point...
x = rand(1,100);
y = rand(1,100);
z = rand(1,100);
a = 1:100;
scatter3(x,y,z,50,a,'filled');
colorbar;
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/610765/image.jpeg)
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Discrete Data Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!