Can I control filter command?
1 次查看(过去 30 天)
显示 更早的评论
Assuming I have a function an equation like
y[n]=x[n]-y[n-1] with the condition that y[n]=0 if n<0
can I implement and solve this using filter command? or should I solve it in another way?
0 个评论
采纳的回答
per isakson
2020-5-30
编辑:per isakson
2020-5-30
Yes, filter() is possible. Try
y = filter( 1, [1,1], x );
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Mathematics and Optimization 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!