I merged two parts together and I want to draw them together but in two different colors
fb=[fr;fi];
when
stem (fb) ;
the output one colors I want output two colors in one plot

 Réponse acceptée

KSSV
KSSV le 11 Fév 2019
Modifié(e) : KSSV le 11 Fév 2019

0 votes

A = rand(3,1) ;
B = rand(3,1) ;
x1 = 1:length(A) ;
x2 = (1:length(B))+length(A) ;
figure
hold on
stem(x1,A,'r')
stem(x2,B,'b')

7 commentaires

abdullah qasim
abdullah qasim le 11 Fév 2019
thank u but I want stem B after stem A
KSSV
KSSV le 11 Fév 2019
Edited the code.
abdullah qasim
abdullah qasim le 11 Fév 2019
Modifié(e) : abdullah qasim le 11 Fév 2019
I mean that stem( A) starts from (0: N-1)and stem (B) from (N :2(N-1)) in same plot at different colours.
KSSV
KSSV le 11 Fév 2019
Yes....you can do that....
abdullah qasim
abdullah qasim le 11 Fév 2019
how
KSSV
KSSV le 11 Fév 2019
I gave you an exampel code.....you need to do the same with that....your fr is A and fl is B...
abdullah qasim
abdullah qasim le 11 Fév 2019
Modifié(e) : abdullah qasim le 11 Fév 2019
thank u very much

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Denoising and Compression dans Centre d'aide et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by