Borrar filtros
Borrar filtros

Combining plots

1 visualización (últimos 30 días)
Volkan Kandemir
Volkan Kandemir el 4 de Abr. de 2012
Hi everyone.
I want to combine discontinious line as follows.
h1=plot([0 1],[0 1],'DisplayName','data1')
hold on
h2=plot([5 4],[6 7],'DisplayName','data1')
There will be two lines, one is from (0,0) to (1,1) and other one is from (5,6) to (4,7). Both lines are named as 'data1' but still they are independed of each other. On the Legent there are 2 series named as 'data1'.How to combine these two lines such that there will be only one series named as 'data1'.

Respuesta aceptada

Honglei Chen
Honglei Chen el 4 de Abr. de 2012
You can try the following trick and see if it addresses your need.
plot([0 1 nan 5 4],[0 1 nan 6 7],'DisplayName','data1')
legend('data1')
  1 comentario
Volkan Kandemir
Volkan Kandemir el 4 de Abr. de 2012
Thanks a lot it will be very helpfull

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by