Package no.uib.cipr.matrix

Examples of no.uib.cipr.matrix.SymmTridiagEVD.factor()


        assertEquals(T, evd.getEigenvalues(), evd.getEigenvectors());
    }

    public void testFactor() throws NotConvergedException {
        SymmTridiagEVD evd = new SymmTridiagEVD(A.numRows());
        evd.factor(T.copy());
        assertEquals(T, evd.getEigenvalues(), evd.getEigenvectors());
    }

    public void testRepeatFactor() throws NotConvergedException {
        SymmTridiagEVD evd = new SymmTridiagEVD(A.numRows());
View Full Code Here


        assertEquals(T, evd.getEigenvalues(), evd.getEigenvectors());
    }

    public void testRepeatFactor() throws NotConvergedException {
        SymmTridiagEVD evd = new SymmTridiagEVD(A.numRows());
        evd.factor(T.copy());
        assertEquals(T, evd.getEigenvalues(), evd.getEigenvectors());
        evd.factor(T.copy());
        assertEquals(T, evd.getEigenvalues(), evd.getEigenvectors());
    }
View Full Code Here

    public void testRepeatFactor() throws NotConvergedException {
        SymmTridiagEVD evd = new SymmTridiagEVD(A.numRows());
        evd.factor(T.copy());
        assertEquals(T, evd.getEigenvalues(), evd.getEigenvectors());
        evd.factor(T.copy());
        assertEquals(T, evd.getEigenvalues(), evd.getEigenvectors());
    }

}
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.