Max-plus algebra eigenvector checker
[z] = maxplusisegv(A,vx,lam)
This function returns %T if vx is the eigenvector corresponding to eigenvalue lam of A and returns %F if vx is not eigenvector corresponding to eigenvalue lam.
A = [1 2;3 4] A = 1. 2. 3. 4. vx = [13;15] vx = 13. 15. lam = 4; z = maxplusisegv(A,vx,lam) z = T