Package edu.ucla.sspace.matrix.SVD

Examples of edu.ucla.sspace.matrix.SVD.Algorithm


     * @return a matrix builder to be used in creating a matrix for use with the
     *         {@link SVD} class
     */   
    @Deprecated
    public static MatrixBuilder getMatrixBuilderForSVD(boolean transpose) {
        Algorithm fastest = SVD.getFastestAvailableAlgorithm();
        // In the unlikely case that this is called when no SVD support is
        // available, return a default instance rather than error out.  This
        // enables programs that call this method without invoking the SVD (or
        // those that do so optionally) to continue working without error.
        if (fastest == null) {
View Full Code Here

TOP

Related Classes of edu.ucla.sspace.matrix.SVD.Algorithm

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.