How can I plot multiple lines with a slightly different shade of the same color?

39 views (last 30 days)
Hi all,
I'm trying to create a figure in which I plot the data of around 20 measurement sequences from one experiment. I would like to be able to differentiate between these 20 lines by plotting each of them in a slightly different color of gray. These lines will then represent the 'population' data.
Whenever a measurement of the same quantity is done in the future, the line representing the data acquired could be plotted in red, while the population data would then be plotted in the background in different shades of gray as a comparison.
The loop used for plotting the different lines looks like this:
figure('name','Population data')
for ii = 1:20
plot(time,freqlist{ii});
hold on;
end
Here, freqlist would be a cell structure with a range of different frequency measurement series. Does anyone know a way to first define the starting color and then slightly change this color with each iteration?

Accepted Answer

Jan
Jan on 4 Jun 2019
startColor = [0.5, 0.5, 0.5];
for ii = 1:20
plot(time, freqlist{ii}, 'Color', startColor + (ii-1) / 40);
hold on;
end

More Answers (1)

Caroline
Caroline on 19 Nov 2019
how can i do it in spectrum 1 color e.g. blue, green? (various shades)

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Products


Release

R2018b

Community Treasure Hunt

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

Start Hunting!