plot or stem the length of negative and positive signal?

1 visualización (últimos 30 días)
abdullah qasim
abdullah qasim el 26 de Feb. de 2019
Comentada: abdullah qasim el 26 de Feb. de 2019
I follow positive and negative references
XNsize = length (Xn);
[XNsize, Xn, Xp]
I want to plot the signal by using "stem" as follow
stem([XNsize, Xn, Xp])
but in different colours
meaning
Xn in red
Xp in blue

Respuesta aceptada

KSSV
KSSV el 26 de Feb. de 2019
y1 = rand(10,1) ;
x1 = 1:length(y1) ;
y2 = rand(15,1) ;
x2 = [1:length(y2)]+length(y1) ;
figure
hold on
stem(x1,y1,'r')
stem(x2,y2,'b')
legend('x1','x2')

Más respuestas (1)

madhan ravi
madhan ravi el 26 de Feb. de 2019
stem(repmat(XNsize,XNsize,1),[Xn, Xp])

Categorías

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

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by