Borrar filtros
Borrar filtros

line color in figure

3 visualizaciones (últimos 30 días)
Yonghyun
Yonghyun el 30 de En. de 2017
Editada: Stephen23 el 30 de En. de 2017
I'd like to change the color of the diagonal axis. Please look at the picture below.
  1 comentario
Jan
Jan el 30 de En. de 2017
Which line is "the diagonal axis"? Please post your code and explain, what you have tried so far. Thanks.

Iniciar sesión para comentar.

Respuestas (1)

Stephen23
Stephen23 el 30 de En. de 2017
Editada: Stephen23 el 30 de En. de 2017
If you plot all of the lines at once then they will automatically be colored using the axes ColorOrder:
N = 16;
A = linspace(0,pi,N);
X = cos(A);
Y = sin(A);
X(2,:) = 0;
Y(2,:) = 0;
plot(X,Y)
axis equal
The documentation explains how the ColorOrder can be changed:

Categorías

Más información sobre Colormaps 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!

Translated by