// Computes the eigenvalues and eigenvectors for a symmetric matrix.
// returns an array of DoubleMatrix objects containing the eigenvectors
// stored as the columns of the first matrix, and the eigenvalues as
// diagonal elements of the second matrix.
public static DoubleMatrix [] jblas_symmetricEigenvectors(double [][]dM) {
return org.jblas.Eigen.symmetricEigenvectors(new DoubleMatrix(dM));
}