sum first matrix and second matrix

1 回表示 (過去 30 日間)
abdullah qasim
abdullah qasim 2019 年 1 月 12 日
コメント済み: Walter Roberson 2019 年 2 月 17 日
I want to collect the first function and the second function but there is an error there is no help ('Xf ').
x=[-1 8 2 -3 -5 6 -4 5 -8 7 -9 4 5 -10 -6 -11 8 3 7 1 -5 -20 14 18 19 -16 8 16 -17 -15];
Xp=x(x>0);
Xn=x(x<0);
figure(1)
stem(Xn);
title('negative signal');
Xn=abs(Xn);
figure(2)
stem(x);
title('orginal signal');
figure(3)
stem(Xp);
title('positive signal');
figure(4)
stem(Xn);
title('abs negative signal');
Xf=Xp+Xn;

採用された回答

Walter Roberson
Walter Roberson 2019 年 1 月 12 日
Your Xp and Xn are different lengths. You cannot add them. And if you could, what would the answer mean ?
  4 件のコメント
abdullah qasim
abdullah qasim 2019 年 2 月 17 日
How can I keep track of the size of at least one of the two if I need to separate them out again?
Walter Roberson
Walter Roberson 2019 年 2 月 17 日
XNsize = length(Xn);
[XNsize, Xn, Xp]

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeArray and Matrix Mathematics についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by