how to produce multtiple stacked plots with different colors in a for loop?

조회 수: 1 (최근 30일)
I am producing multiple plots in a for loop in one axis. Any idea to produce different colors for each plot? It will be ~60 plots stacked on each other.
Beacuse plots are stacked in a for loop I cant give individual color as usual.

채택된 답변

Daniel M
Daniel M 2019년 10월 25일
You can use the power of colormaps (link) to do this. Here is an example:
t = 0:0.001:1;
figure
col = jet(60);
for k = 1:60
x = sin(2*pi*5*t + k/60);
plot(t,x,'-','Color',col(k,:));
hold on
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by