フィルターのクリア

Creating both series and for loop

5 ビュー (過去 30 日間)
Gokhan Kayan
Gokhan Kayan 2018 年 5 月 3 日
コメント済み: Ameer Hamza 2018 年 5 月 4 日
I have a precipitation values P= [0.5 1 1.5 1] and U=[10 100 200 150 100 50] and I want to create a series like below in matlab.
I write a command like this but I can't run it: Let's say M=4 and N=9
for n=1:9;
syms m;
Q(n)=symsum(P(m)*U(n-m+1),m,1,4);
end
But it gives me the following error.
rror using sym/subsindex (line 732) Invalid indexing or function definition. When defining a function, ensure that the arguments are symbolic variables and the body of the function is a SYM expression. When indexing, the input must be numeric, logical, or ':'.
How can I solve this problem ?

採用された回答

Ameer Hamza
Ameer Hamza 2018 年 5 月 3 日
編集済み: Ameer Hamza 2018 年 5 月 3 日
You are trying to calculate the convolution of P and U and there is a built-in function in MATLAB for this
Q = conv(P, U);
  2 件のコメント
Gokhan Kayan
Gokhan Kayan 2018 年 5 月 4 日
Thanks Ameer, I tried to write a code but I didn't know that MATLAB has just a short command for this. This is what I exactly want :)
Ameer Hamza
Ameer Hamza 2018 年 5 月 4 日
You are welcome.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeConversion Between Symbolic and Numeric についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by