Filter löschen
Filter löschen

How to obtain different color graphs for a single matrix?

1 Ansicht (letzte 30 Tage)
NIHARIKA
NIHARIKA am 17 Jul. 2014
Beantwortet: Jos am 17 Jul. 2014
I have obtained varying readings from a sensor in the form of a 78x3 matrix. I have named this matrix as data. Now when perform: plot(data) then I get three same lines. I need to know which are the readings of the first column, second column and third column and want different color for each of them so that anybody can understand it. How can I do it?

Akzeptierte Antwort

Jos
Jos am 17 Jul. 2014
Strange, when I produce a 78x3 matrix using data=rand(78,3); and then do plot(data) it shows 3 lines in the standard blue, green and red used by Matlab.
But if it doesn't do the same for you, you can plot each column separately and give it a colour by:
plot(data(:,1),'b')
hold on
plot(data(:,2),'g')
plot(data(:,3),'r')
add a legend by using legend('column1','column2','column3')
Cheers
Joe

Weitere Antworten (0)

Kategorien

Mehr zu Line 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!

Translated by