I need to create and plot this signal in matlab with 2000 points:
x(n) = 0.6530 x(n-1) - 0.7001 x(n-2) + v(n)
Where $x(-1)=x(-2)=0$ and $v(n) =$ white noise
I have no clue about how to do it since I'm pretty new to matlab, I would appreciate any hint to begin with, but I would apreciate more some code.
Thank you.
You want to start off by initializing an array of all of your inputs
You also know that you will have an array of all your answers, so let's initialize an array for that
now let's go through every element of n and fill in the appropriate x value
now we can plot everything
I am not exactly sure what the white noise is supposed to be, but you will have to fill in your own values for that