Package org.ejml.alg.dense.decomposition.svd

Examples of org.ejml.alg.dense.decomposition.svd.SvdImplicitQrDecompose


     * @return
     */
    public static SingularValueDecomposition<DenseMatrix64F> svd( int numRows , int numCols ,
                                                                  boolean needU , boolean needV , boolean compact ) {
        // Don't allow the tall decomposition by default since it *might* be less stable
        return new SvdImplicitQrDecompose(compact,needU,needV,false);
    }
View Full Code Here

TOP

Related Classes of org.ejml.alg.dense.decomposition.svd.SvdImplicitQrDecompose

Copyright © 2018 www.massapicom. 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.