LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
maplib_saw.m
1function MAP=maplib_saw()
2% MAP=maplib_saw() - MAP(2) process with saw-like autocorrelation function
3% (-1 eigenvalue in embedded process matrix)
4%
5% Output:
6% MAP: pre-fitted MAP process
7%
8
9D0=[-1 0
10 0 -2];
11D1=[ 0 1
12 2 0];
13MAP=map_scale({D0,D1},1);
14end