How do i code y[n]?

Answers (1)

Use parentheses instead of brackets:
n = 801; % n must be at least this big.
y(n) = x(n) + 0.4 * x(n-400) + 0.4 * x(n-800);

3 Comments

If you want convolution, use conv().
how to convolve this without conv function
Then I guess it must be your homework assignment. If you're not allowed to use conv(), you'll have to use a for loop.

Sign in to comment.

Products

Release

R2021b

Asked:

on 28 Nov 2021

Commented:

on 29 Nov 2021

Community Treasure Hunt

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

Start Hunting!