Package ch.akuhn.matrix

Examples of ch.akuhn.matrix.Vector


       * return the result to workd(ipntr(2)).  
       *
       */
      int x0 = ipntr[1-1]-1; // Fortran is off-by-one compared to Java!
      int y0 = ipntr[2-1]-1;
      Vector x = Vector.copy(workd, x0, n);
      Vector y = this.callback(x);
      assert y.size() == n;
      y.storeOn(workd, y0);  
    }
    /*
     * Either we have convergence or there is an error.
     *  
     */
 
View Full Code Here

TOP

Related Classes of ch.akuhn.matrix.Vector

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.