can you give me the basic simple code for this figure?
显示 更早的评论

where r[k]=input k=1,2,3,4....k f(0),f(1),....f(k-1) are coefficients y[k]=output
回答(1 个)
Iain
2013-8-21
Are you working in simulink, or matlab?
r = [zeros(1,number_of_delays-1) value1 value2 value3 .... ];
for k = number_of_delays:numel(r)
y(k) = f0*r(k) + f1*r(k-1) + f2*r(k-2) + f3*r(k-3) ... ;
end
类别
在 帮助中心 和 File Exchange 中查找有关 Signal Operations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!