请问为什么我用SAS求解特征值和特征向量时,Log里面会出现ERROR: Function/subroutine PRXCHANGE not found?
例题如下(求A'A的特征值和特征向量,求A的奇异值分解):
A={4 8 8,3 6 -9};
关键我想知道为什么Log里面会出现ERROR: Function/subroutine PRXCHANGE not found?
我的程序如下:
prociml;
A={4 8 8,3 6 -9};
A1=t(A);
A2=A*A1;
A3=A1*A;
calleigen(values,vectors,A2);
calleigen(val,vec,A3);
printvalues vectors;
printval vec;
quit;
谢谢!!