import com.imsl.math.*; public class SymEigenEx1 { public static void main(String args[]) { double a[][] = { {1, 1, 1}, {1, 1, 1}, {1, 1, 1} }; SymEigen eigen = new SymEigen(a); new PrintMatrix("Eigenvalues").print(eigen.getValues()); new PrintMatrix("Eigenvectors").print(eigen.getVectors()); } }