Borrar filtros
Borrar filtros

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

50 visualizaciones (últimos 30 días)
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?

Respuesta aceptada

Jan
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

Más respuestas (1)

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

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by