tau: variance parameters - named vector with 'tau.z' and 'tau.v'
mu: mean vector - typically output of getMu. Can also be any complex or a two-column matrix, or a multi-column matrix with some named columns "x" and "y" (case-insensitive)).
A: 95% area parameter
Returns
a data frame with Time, X, and Y columns.
Examples
require(marcher)# 95% home range areaA <-20# distance of migrationD <-100# centers of attractionx1 <-0; y1 <-0x2 <- sqrt(D); y2 <- sqrt(D)# time scalestau.z <-5tau.v <-0.5t1 <-90dt <-20# mean parameters (t1,dt)mus <- c(t1=t1,dt=dt,x1=x1,y1=y1,x2=x2,y2=y2)# time-scale parameterstaus <- c(tau.z = tau.z, tau.v = tau.v)# generate and plot mean vectorT <-1:200Mu <- getMu(T, mus)# simulate and plot MOUF processSimTrack <- simulate_shift(T, tau=taus, Mu, A=A)with(SimTrack, scan_track(time=T,x=X,y=Y))