Colouring different regions on a graph.
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Bhavick Singh
am 26 Mai 2021
Kommentiert: Bhavick Singh
am 27 Mai 2021
I have time series data which is non linear. It has really high and really low areas which I need to represent using different colours. Its a line graph. Please assist.
0 Kommentare
Akzeptierte Antwort
Jakob B. Nielsen
am 26 Mai 2021
Plot stepwise segments of your data? For example:
data=1000*rand(1000,1);
data=sort(data);
x=1:1:1000;
start=1;
figure
for i=1:100
if mean(data(start:start+10)) > 500
cc='r';
else
cc='b';
end
plot(x(start:start+10),data(start:start+10),cc);
hold on
start=i*10;
end
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu 2-D and 3-D 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!