Fill my plot with a colour
25 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
P_L
el 11 de Feb. de 2019
Comentada: Star Strider
el 11 de Feb. de 2019
Hi I have made the attached image but want to fill the plot inside with the colour: [1 0.92 0.8].
Does anyone know how to do this?
Many thanks
2 comentarios
Geoff Hayes
el 11 de Feb. de 2019
harpreet - which "plot inside with colour..."? Do you mean that you want to change the white background to [1 0.92 0.8]? If so, then you would do something like
set(gca,'Color',[1 0.92 0.8])
where gca gets the current axes.
Respuesta aceptada
Star Strider
el 11 de Feb. de 2019
Try this:
figure
plot(rand(1,10), rand(1,10), 'p')
set(gca, 'Color',[1 0.92 0.8])
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Annotations 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!