Examples of EigenPowerMethod


Examples of org.ejml.alg.dense.decomposition.eig.EigenPowerMethod

     * @param A A matrix.  Not modified.
     */
    // TODO maybe do the regular power method, estimate the eigenvalue, then shift invert?
    public static Eigenpair dominantEigenpair( DenseMatrix64F A ) {

        EigenPowerMethod power = new EigenPowerMethod(A.numRows);

        // eh maybe 0.1 is a good value.  who knows.
        if( !power.computeShiftInvert(A,0.1) )
            return null;

        return null;//power.getEigenVector();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.