wongone 各位大侠,求助一哈,想要得出矩阵的实特征值中最大的那个(实数),不知道在R中要用什么函数可以实现? z=matrix(c(1,1,1/2,1/3,1,1,1/2,1/3,2,2,1,1/2,3,3,2,1),4,4) ev=eigen(z)$values ev1=c(ev)
wool help("eigen") values a vector containing the p eigenvalues of x, sorted in decreasing order 第一个就应该是最大的了