How to avoid legend error?

9 visualizaciones (últimos 30 días)
Ezz El-din Abdullah
Ezz El-din Abdullah el 14 de Mzo. de 2017
Comentada: KSSV el 16 de Mzo. de 2017
I keep receiving this error:
Error using vertcat
Dimensions of matrices being concatenated are not consistent.
I solve it by making the length of the string the same. Like this example:
legend(['x9';'x10']) %this will produce the error
legend(['x9_';'x10']) %solution
But this is not what I want especially when the string gets lengthy. So please, is there another solution?

Respuestas (1)

KSSV
KSSV el 15 de Mzo. de 2017
Editada: KSSV el 15 de Mzo. de 2017
legend(['x9' ,'x10'])
  2 comentarios
Ezz El-din Abdullah
Ezz El-din Abdullah el 15 de Mzo. de 2017
How can it be a row vector?!
It will then produce just one legend (with the same color)
KSSV
KSSV el 16 de Mzo. de 2017
Yes you are right....This will work.
legend({'x9' ; 'x10'})

Iniciar sesión para comentar.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by