scatter function for different colors

1 Ansicht (letzte 30 Tage)
sermet
sermet am 19 Feb. 2015
Bearbeitet: Michael Haderlein am 19 Feb. 2015
txt1=[{'A100'};{'B100'};{'C100'};{'X1'};{'X2'}];
y=[100;150;200;135;140];
x=[200;250;300;225;235];
figure(1),scatter(y, x, 'b^');grid off;
text(y, x, txt1);
title('points')
xlabel('Y');
ylabel('X');
line(y,x,'Color','k','LineWidth',1);
%I need to make X1 and X2 red in the figure1 while the other points are black.

Akzeptierte Antwort

Michael Haderlein
Michael Haderlein am 19 Feb. 2015
Bearbeitet: Michael Haderlein am 19 Feb. 2015
txt1=[{'A100'};{'B100'};{'C100'};{'X1'};{'X2'}];
y=[100;150;200;135;140];
x=[200;250;300;225;235];
% size|color in rgb | marker
figure(1),scatter(y, x, 36, [zeros(numel(y)-2,3);1 0 0;1 0 0], '^');grid off;
text(y, x, txt1);
title('points')
xlabel('Y');
ylabel('X');
line(y,x,'Color','k','LineWidth',1);

Weitere Antworten (0)

Kategorien

Mehr zu Predictive Maintenance Toolbox 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!

Translated by