Package no.uib.cipr.matrix.sparse

Examples of no.uib.cipr.matrix.sparse.CompColMatrix


    protected void createPrimary() throws Exception {
        int n = Utilities.getInt(1, max);
        int m = Utilities.getInt(1, max);
        int b = Utilities.getInt(Math.min(bmax, m));
        int[][] nz = Utilities.getColumnPattern(n, m, b);
        A = new CompColMatrix(n, m, nz);
        Ad = Utilities.columnPopulate(A, nz);
    }
View Full Code Here

TOP

Related Classes of no.uib.cipr.matrix.sparse.CompColMatrix

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.