How can one simulate a Gaussian process with nonzero covariance?
I've never simulated a process. I have searched for some basic examples, but I cannot make sense of all of it. Can someone give an an algorithm (continuous and discrete) followed with a minor explanation of such a simulation? How can the Fourier transform be used?
R) simply usediff(cumsum(rnorm(1000)))for each varaible. I.e. the difference between "time steps" of a cummulative sum of a gaussian variable. To use a multivariate gaussian sampling usermvnormfrommvtnormpackage. – Drey Oct 20 '16 at 12:54