vectore with two colors

4 ビュー (過去 30 日間)
abdullah qasim
abdullah qasim 2019 年 2 月 11 日
編集済み: abdullah qasim 2019 年 2 月 11 日
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

採用された回答

KSSV
KSSV 2019 年 2 月 11 日
編集済み: KSSV 2019 年 2 月 11 日
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 件のコメント
KSSV
KSSV 2019 年 2 月 11 日
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 2019 年 2 月 11 日
編集済み: abdullah qasim 2019 年 2 月 11 日
thank u very much

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeTransforms についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by