How can we find function value f1, f2,.......f15? If function is defined by fi = Xi +3*Xi+1 - 4Xi+2 + Xi+3 and Xi=[2 5 -6 8 9 45 4 4 4 4 8 9 4 1 5]; i=1,2,......15.

3 views (last 30 days)
How can we find function value f1, f2,.......f15? If function is defined by fi = Xi +3*Xi+1 - 4Xi+2 + Xi+3 and Xi=[2 5 -6 8 9 45 4 4 4 4 8 9 4 1 5]; i=1,2,......15.
  6 Comments

Sign in to comment.

Answers (1)

Andrei Bobrov
Andrei Bobrov on 10 Feb 2016
f = conv(Xi,[1 -4 3 1],'valid');

Community Treasure Hunt

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

Start Hunting!