vectore with two colors
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
abdullah qasim
le 11 Fév 2019
Modifié(e) : abdullah qasim
le 11 Fév 2019
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
0 commentaires
Réponse acceptée
KSSV
le 11 Fév 2019
Modifié(e) : KSSV
le 11 Fév 2019
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
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...
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur OFDM dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!