How to show difference equation on the command line?

For example, given , is there a way to show this equation on the command line in Matlab just like what the tf() does?

Answers (1)

fprintf('y(n) = 0.25\n')
y(n) = 0.25
fprintf('y(n-2) = 2*x(n)+0.5*x(n-2)\n')
y(n-2) = 2*x(n)+0.5*x(n-2)

Categories

Products

Release

R2020b

Asked:

on 21 Sep 2021

Answered:

on 21 Sep 2021

Community Treasure Hunt

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

Start Hunting!