Hi,
I am having trouble understanding how this works.
I am giving the following:
y[k+2] - y[k+1] + 0.24y[k] = f[k+2] - 2f[k+1];
y[-2] = 1, y[-1] = 2;
f[k] = 0 for k < 0;
f[k] = k for k >= 0;
I would like to have a program compute the next values in the sequence, so, I need y[-2] = 1 to...