using MarkerSize in plot3
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Shimon Refaelov
am 2 Jun. 2020
Kommentiert: Shimon Refaelov
am 2 Jun. 2020
I have two matrices, A and B, size of each is
. Each row represents a coordinate (x,y,z).
. Each row represents a coordinate (x,y,z).I want to display both of them on the same coordiante system using plot3.
I would like to change the MarkerSize of each set to be something different.
My attempt (which didn't work)
plot3(A(:,1), A(:,2), A(:,3), 'MarkerSize', 5, 'xr', B(:,1), B(:,2), B(:,3), 'sb', 'MarkerSize', 10);
0 Kommentare
Akzeptierte Antwort
madhan ravi
am 2 Jun. 2020
Bearbeitet: madhan ravi
am 2 Jun. 2020
https://www.mathworks.com/help/matlab/ref/plot3.html#mw_e90f6fb5-050e-4dda-8f6d-e0eaab1d995e. My suggestion is to use two plot3(...) calls with hold on
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Annotations 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!