leff@smu.UUCP (11/19/83)
#N:smu:14300002:000:331
smu!leff Nov 18 10:37:00 1983
Does anybody know whats wrong with this program? It generates instead
of two values of lambda representing the eigenvalues, it generates some
weird vectors within vectors?
FUNCTION EIGENVALUES (MX,K),
SOLVE(DET(MX^-1.K-LAMBDA*IDMAT(2))==0,LAMBDA)
ENDFUN;
M616:{[3*M,0],[0,M]};
K616:{[2*K,0],[-K,K]};
EIGENVALUES(M616,K616);