How can I label symbols and colors of markers in scatter (example)
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Johannes
am 25 Nov. 2018
Beantwortet: Walter Roberson
am 25 Nov. 2018
Hey,
I have to scatter 2 different vars of 2 measurements like in the picture below. The marker symbol describes the variable which is plotted, the color is for different measurements. How can I create two legends, one for the symbol, one for the color?
figure(1);
hold on
y1 = scatter(measurement1.n, measurement1.var1, 'ro');
y2 = scatter(measurement1.n, measurement1.var2, 'rv');
y3 = scatter(measurement2.n, measurement1.var1, 'bo');
y4 = scatter(measurement2.n, measurement1.var2, 'bv');
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 25 Nov. 2018
create additional objects with position nan and the attributes you want in the legend , and legend() the handles for those specifically .
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Legend 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!