Package com.github.fommil.netlib

Examples of com.github.fommil.netlib.ARPACK


        c     pairs are kept together and the associated Ritz estimates are located in
        c     WORKL(IPNTR(8)), WORKL(IPNTR(8)+1), ... , WORKL(IPNTR(8)+NCV-1).
        c
        c-----------------------------------------------------------------------
         */
      ARPACK arpack = ARPACK.getInstance();
      do
        {
            arpack.dnaupd(ido, bmat, n, which, nev, tol, resid, ncv, v, n, iparam, ipntr, workd,
                    workl, lworkl, info);

            // The algorithm is done => skip the rest of the loop
            if (ido.val == 99)
            {
View Full Code Here

TOP

Related Classes of com.github.fommil.netlib.ARPACK

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.