Borrar filtros
Borrar filtros

How can I stack STEM plots in a single Matlab plot

3 visualizaciones (últimos 30 días)
Shaumik
Shaumik el 4 de Abr. de 2014
Comentada: Sean de Wolski el 4 de Abr. de 2014
I am trying to stack 3 STEM plots but unable to do so.
I did the 3 normal plots by doing +1 and +2.
How can I do it?
  2 comentarios
Star Strider
Star Strider el 4 de Abr. de 2014
Define ‘stack’.
Shaumik
Shaumik el 4 de Abr. de 2014
Hi Star Strider.
I want to arrange the 3 plots in the same graph one over another with a gap of some value.

Iniciar sesión para comentar.

Respuesta aceptada

Sean de Wolski
Sean de Wolski el 4 de Abr. de 2014
Editada: Sean de Wolski el 4 de Abr. de 2014
x = (1:10)';
y = rand(10,3);
ys = cumsum(y,2);
stem(x,fliplr(ys))
  2 comentarios
Shaumik
Shaumik el 4 de Abr. de 2014
Editada: Sean de Wolski el 4 de Abr. de 2014
Thanks Sean.
How would I have to approach it if I import 3 sets of values and want to plot them as:
h=stem(CNB2s(1:100,1),A4,'r');set(h,'marker','none')
h=stem(CNB3s(1:100,1),A5,'b');set(h,'marker','none')
h=stem(CNB4s(1:100,1),A6,'g');set(h,'marker','none')
Sean de Wolski
Sean de Wolski el 4 de Abr. de 2014
I just edited the example. I think it's probably more in line with what you want now.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Stem Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by