フィルターのクリア

Recurrence Convolution I just seem to get the recurrence to work . Could some one help me out?

3 ビュー (過去 30 日間)
Michael Jaskulski
Michael Jaskulski 2022 年 6 月 18 日
回答済み: Riya 2023 年 9 月 15 日
>> a = [-0.75 0.125];
b = [0 0.25];
n = 0:1:20;
x0 = 0;
y0 = [0 0];
x = [ones(1,21)];
y = recur(a,b,n,x,x0,y0);
stem (n,y);
title('Recurrence Convolution')
xlabel('n')
ylabel('y')
Unrecognized function or variable 'recur'.

回答 (1 件)

Riya
Riya 2023 年 9 月 15 日
Hello Michael Jaskulski ,
As per my understanding, you have encountered error: Unrecognized function or variable 'recur'.
Please note that, there is no in-built function ‘recur’ in MATLAB R2023a. Define the function in an m-file and call the function using your own inputs and store the output from ‘recur’ in the variable ‘result.
For more details about ‘recur’ function, you can refer the following document:
In case you further require a more specific solution tailored to your case, you can provide more information about it.
I hope it helps!

カテゴリ

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

タグ

製品


リリース

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by