How can I plot multiple lines with a slightly different shade of the same color?
21 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Loek Meijers
el 4 de Jun. de 2019
Respondida: Caroline
el 19 de Nov. de 2019
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?
0 comentarios
Respuesta aceptada
Jan
el 4 de Jun. de 2019
startColor = [0.5, 0.5, 0.5];
for ii = 1:20
plot(time, freqlist{ii}, 'Color', startColor + (ii-1) / 40);
hold on;
end
0 comentarios
Más respuestas (1)
Caroline
el 19 de Nov. de 2019
how can i do it in spectrum 1 color e.g. blue, green? (various shades)
0 comentarios
Ver también
Categorías
Más información sobre Line Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!