Package edu.emory.mathcs.csparsej.tdouble.demo

Source Code of edu.emory.mathcs.csparsej.tdouble.demo.Dcs_demo2


package edu.emory.mathcs.csparsej.tdouble.demo;

import edu.emory.mathcs.csparsej.tdouble.demo.Dcs_demo.Dproblem;

/**
* Read a matrix from a file and solve a linear system.
*
* @author Piotr Wendykier (piotr.wendykier@gmail.com)
*
*/
public class Dcs_demo2 {
    public static void main(String[] args) {
        Dproblem Prob = null;
        if (args.length == 0) {
            throw new IllegalArgumentException("Usage: java edu.emory.mathcs.csparsej.tdouble.demo.Dcs_demo2 fileName");
        }
        Prob = Dcs_demo.get_problem(args[0], 1e-14);
        Dcs_demo.demo2(Prob);
    }
}
TOP

Related Classes of edu.emory.mathcs.csparsej.tdouble.demo.Dcs_demo2

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.