All Downloads are FREE. Search and download functionalities are using the official Maven repository.

smile.math.blas.LAPACK Maven / Gradle / Ivy

The newest version!
/*******************************************************************************
 * Copyright (c) 2010-2020 Haifeng Li. All rights reserved.
 *
 * Smile is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation, either version 3 of
 * the License, or (at your option) any later version.
 *
 * Smile is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with Smile.  If not, see .
 ******************************************************************************/

package smile.math.blas;

import java.nio.DoubleBuffer;
import java.nio.FloatBuffer;
import java.nio.IntBuffer;

/**
 * Linear Algebra Package. LAPACK is a standard software library for numerical
 * linear algebra. It provides routines for solving systems of linear equations
 * and linear least squares, eigenvalue problems, and singular value
 * decomposition. It also includes routines to implement the associated matrix
 * factorizations such as LU, QR, Cholesky and Schur decomposition.
 *
 * @author Haifeng Li
 */
public interface LAPACK {
    /** The default LAPACK engine. */
    LAPACK engine = getInstance();

    /** Creates an instance. */
    static LAPACK getInstance() {
        LAPACK mkl = MKL();
        return mkl != null ? mkl : new smile.math.blas.openblas.OpenBLAS();
    }

    /** Creates an MKL instance. */
    static LAPACK MKL() {
        org.slf4j.Logger logger = org.slf4j.LoggerFactory.getLogger(LAPACK.class);

        try {
            Class clazz = Class.forName("smile.math.blas.mkl.MKL");
            logger.info("smile-mkl module is available.");
            return (LAPACK) clazz.newInstance();
        } catch (Exception e) {
            logger.debug("Failed to create MKL instance: ", e);
        }

        return null;
    }

    /**
     * Solves a real system of linear equations.
     * 

     *     A * X = B
     * 
* where A is an N-by-N matrix and X and B are N-by-NRHS matrices. * * The LU decomposition with partial pivoting and row interchanges is * used to factor A as *

     *     A = P * L * U
     * 
* where P is a permutation matrix, L is unit lower triangular, and U is * upper triangular. The factored form of A is then used to solve the * system of equations A * X = B. * * @param layout The matrix layout. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The matrix of dimension (LDA, N). * On exit, the factors L and U from the factorization * A = P*L*U; the unit diagonal elements of L are not stored. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param ipiv The pivot indices that define the permutation matrix P; * row i of the matrix was interchanged with row IPIV(i). * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, U(i,i) is exactly zero. The factorization * has been completed, but the factor U is exactly * singular, so the solution could not be computed. */ int gesv(Layout layout, int n, int nrhs, double[] A, int lda, int[] ipiv, double[] B, int ldb); /** * Solves a real system of linear equations. *

     *     A * X = B
     * 
* where A is an N-by-N matrix and X and B are N-by-NRHS matrices. * * The LU decomposition with partial pivoting and row interchanges is * used to factor A as *

     *     A = P * L * U
     * 
* where P is a permutation matrix, L is unit lower triangular, and U is * upper triangular. The factored form of A is then used to solve the * system of equations A * X = B. * * @param layout The matrix layout. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The matrix of dimension (LDA, N). * On exit, the factors L and U from the factorization * A = P*L*U; the unit diagonal elements of L are not stored. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param ipiv The pivot indices that define the permutation matrix P; * row i of the matrix was interchanged with row IPIV(i). * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, U(i,i) is exactly zero. The factorization * has been completed, but the factor U is exactly * singular, so the solution could not be computed. */ int gesv(Layout layout, int n, int nrhs, DoubleBuffer A, int lda, IntBuffer ipiv, DoubleBuffer B, int ldb); /** * Solves a real system of linear equations. *

     *     A * X = B
     * 
* where A is an N-by-N matrix and X and B are N-by-NRHS matrices. * * The LU decomposition with partial pivoting and row interchanges is * used to factor A as *

     *     A = P * L * U
     * 
* where P is a permutation matrix, L is unit lower triangular, and U is * upper triangular. The factored form of A is then used to solve the * system of equations A * X = B. * * @param layout The matrix layout. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The matrix of dimension (LDA, N). * On exit, the factors L and U from the factorization * A = P*L*U; the unit diagonal elements of L are not stored. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param ipiv The pivot indices that define the permutation matrix P; * row i of the matrix was interchanged with row IPIV(i). * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, U(i,i) is exactly zero. The factorization * has been completed, but the factor U is exactly * singular, so the solution could not be computed. */ int gesv(Layout layout, int n, int nrhs, float[] A, int lda, int[] ipiv, float[] B, int ldb); /** * Solves a real system of linear equations. *

     *     A * X = B
     * 
* where A is an N-by-N matrix and X and B are N-by-NRHS matrices. * * The LU decomposition with partial pivoting and row interchanges is * used to factor A as *

     *     A = P * L * U
     * 
* where P is a permutation matrix, L is unit lower triangular, and U is * upper triangular. The factored form of A is then used to solve the * system of equations A * X = B. * * @param layout The matrix layout. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The matrix of dimension (LDA, N). * On exit, the factors L and U from the factorization * A = P*L*U; the unit diagonal elements of L are not stored. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param ipiv The pivot indices that define the permutation matrix P; * row i of the matrix was interchanged with row IPIV(i). * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, U(i,i) is exactly zero. The factorization * has been completed, but the factor U is exactly * singular, so the solution could not be computed. */ int gesv(Layout layout, int n, int nrhs, FloatBuffer A, int lda, IntBuffer ipiv, FloatBuffer B, int ldb); /** * Solves a real system of linear equations. *

     *     A * X = B
     * 
* where A is an N-by-N symmetric matrix and X and B are N-by-NRHS matrices. * * The diagonal pivoting method is used to factor A as *

     *     A = U * D * U**T,  if UPLO = 'U'
     * 
* or *

     *     A = L * D * L**T,  if UPLO = 'L'
     * 
* where U (or L) is a product of permutation and unit upper (lower) * triangular matrices, and D is symmetric and block diagonal with * 1-by-1 and 2-by-2 diagonal blocks. The factored form of A is then * used to solve the system of equations A * X = B. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The symmetric matrix of dimension (LDA, N). * On exit, the factor U or L from the Cholesky factorization * A = U**T*U or A = L*L**T. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the leading minor of order i of A is not * positive definite, so the factorization could not be * completed, and the solution has not been computed. */ int sysv(Layout layout, UPLO uplo, int n, int nrhs, double[] A, int lda, int[] ipiv, double[] B, int ldb); /** * Solves a real system of linear equations. *

     *     A * X = B
     * 
* where A is an N-by-N symmetric matrix and X and B are N-by-NRHS matrices. * * The diagonal pivoting method is used to factor A as *

     *     A = U * D * U**T,  if UPLO = 'U'
     * 
* or *

     *     A = L * D * L**T,  if UPLO = 'L'
     * 
* where U (or L) is a product of permutation and unit upper (lower) * triangular matrices, and D is symmetric and block diagonal with * 1-by-1 and 2-by-2 diagonal blocks. The factored form of A is then * used to solve the system of equations A * X = B. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The symmetric matrix of dimension (LDA, N). * On exit, the factor U or L from the Cholesky factorization * A = U**T*U or A = L*L**T. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the leading minor of order i of A is not * positive definite, so the factorization could not be * completed, and the solution has not been computed. */ int sysv(Layout layout, UPLO uplo, int n, int nrhs, DoubleBuffer A, int lda, IntBuffer ipiv, DoubleBuffer B, int ldb); /** * Solves a real system of linear equations. *

     *     A * X = B
     * 
* where A is an N-by-N symmetric matrix and X and B are N-by-NRHS matrices. * * The diagonal pivoting method is used to factor A as *

     *     A = U * D * U**T,  if UPLO = 'U'
     * 
* or *

     *     A = L * D * L**T,  if UPLO = 'L'
     * 
* where U (or L) is a product of permutation and unit upper (lower) * triangular matrices, and D is symmetric and block diagonal with * 1-by-1 and 2-by-2 diagonal blocks. The factored form of A is then * used to solve the system of equations A * X = B. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The symmetric matrix of dimension (LDA, N). * On exit, the factor U or L from the Cholesky factorization * A = U**T*U or A = L*L**T. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the leading minor of order i of A is not * positive definite, so the factorization could not be * completed, and the solution has not been computed. */ int sysv(Layout layout, UPLO uplo, int n, int nrhs, float[] A, int lda, int[] ipiv, float[] B, int ldb); /** * Solves a real system of linear equations. *

     *     A * X = B
     * 
* where A is an N-by-N symmetric matrix and X and B are N-by-NRHS matrices. * * The diagonal pivoting method is used to factor A as *

     *     A = U * D * U**T,  if UPLO = 'U'
     * 
* or *

     *     A = L * D * L**T,  if UPLO = 'L'
     * 
* where U (or L) is a product of permutation and unit upper (lower) * triangular matrices, and D is symmetric and block diagonal with * 1-by-1 and 2-by-2 diagonal blocks. The factored form of A is then * used to solve the system of equations A * X = B. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The symmetric matrix of dimension (LDA, N). * On exit, the factor U or L from the Cholesky factorization * A = U**T*U or A = L*L**T. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the leading minor of order i of A is not * positive definite, so the factorization could not be * completed, and the solution has not been computed. */ int sysv(Layout layout, UPLO uplo, int n, int nrhs, FloatBuffer A, int lda, IntBuffer ipiv, FloatBuffer B, int ldb); /** * Solves a real system of linear equations. *

     *     A * X = B
     * 
* where A is an N-by-N symmetric matrix and X and B are N-by-NRHS matrices. * * The diagonal pivoting method is used to factor A as *

     *     A = U * D * U**T,  if UPLO = 'U'
     * 
* or *

     *     A = L * D * L**T,  if UPLO = 'L'
     * 
* where U (or L) is a product of permutation and unit upper (lower) * triangular matrices, and D is symmetric and block diagonal with * 1-by-1 and 2-by-2 diagonal blocks. The factored form of A is then * used to solve the system of equations A * X = B. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The symmetric packed matrix. * On exit, the factor U or L from the Cholesky factorization * A = U**T*U or A = L*L**T, in the same storage format as A. * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the leading minor of order i of A is not * positive definite, so the factorization could not be * completed, and the solution has not been computed. */ int spsv(Layout layout, UPLO uplo, int n, int nrhs, double[] A, int[] ipiv, double[] B, int ldb); /** * Solves a real system of linear equations. *

     *     A * X = B
     * 
* where A is an N-by-N symmetric matrix and X and B are N-by-NRHS matrices. * * The diagonal pivoting method is used to factor A as *

     *     A = U * D * U**T,  if UPLO = 'U'
     * 
* or *

     *     A = L * D * L**T,  if UPLO = 'L'
     * 
* where U (or L) is a product of permutation and unit upper (lower) * triangular matrices, and D is symmetric and block diagonal with * 1-by-1 and 2-by-2 diagonal blocks. The factored form of A is then * used to solve the system of equations A * X = B. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The symmetric packed matrix. * On exit, the factor U or L from the Cholesky factorization * A = U**T*U or A = L*L**T, in the same storage format as A. * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the leading minor of order i of A is not * positive definite, so the factorization could not be * completed, and the solution has not been computed. */ int spsv(Layout layout, UPLO uplo, int n, int nrhs, DoubleBuffer A, IntBuffer ipiv, DoubleBuffer B, int ldb); /** * Solves a real system of linear equations. *

     *     A * X = B
     * 
* where A is an N-by-N symmetric matrix and X and B are N-by-NRHS matrices. * * The diagonal pivoting method is used to factor A as *

     *     A = U * D * U**T,  if UPLO = 'U'
     * 
* or *

     *     A = L * D * L**T,  if UPLO = 'L'
     * 
* where U (or L) is a product of permutation and unit upper (lower) * triangular matrices, and D is symmetric and block diagonal with * 1-by-1 and 2-by-2 diagonal blocks. The factored form of A is then * used to solve the system of equations A * X = B. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The symmetric packed matrix. * On exit, the factor U or L from the Cholesky factorization * A = U**T*U or A = L*L**T, in the same storage format as A. * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the leading minor of order i of A is not * positive definite, so the factorization could not be * completed, and the solution has not been computed. */ int spsv(Layout layout, UPLO uplo, int n, int nrhs, float[] A, int[] ipiv, float[] B, int ldb); /** * Solves a real system of linear equations. *

     *     A * X = B
     * 
* where A is an N-by-N symmetric matrix and X and B are N-by-NRHS matrices. * * The diagonal pivoting method is used to factor A as *

     *     A = U * D * U**T,  if UPLO = 'U'
     * 
* or *

     *     A = L * D * L**T,  if UPLO = 'L'
     * 
* where U (or L) is a product of permutation and unit upper (lower) * triangular matrices, and D is symmetric and block diagonal with * 1-by-1 and 2-by-2 diagonal blocks. The factored form of A is then * used to solve the system of equations A * X = B. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The symmetric packed matrix. * On exit, the factor U or L from the Cholesky factorization * A = U**T*U or A = L*L**T, in the same storage format as A. * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the leading minor of order i of A is not * positive definite, so the factorization could not be * completed, and the solution has not been computed. */ int spsv(Layout layout, UPLO uplo, int n, int nrhs, FloatBuffer A, IntBuffer ipiv, FloatBuffer B, int ldb); /** * Solves a real system of linear equations. *

     *     A * X = B
     * 
* where A is an N-by-N symmetric positive definite matrix and X and B are N-by-NRHS matrices. * * The Cholesky decomposition is used to factor A as *

     *     A = U**T* U,  if UPLO = 'U'
     * 
* or *

     *     A = L * L**T,  if UPLO = 'L'
     * 
* where U is an upper triangular matrix and L is a lower triangular * matrix. The factored form of A is then used to solve the system of * equations A * X = B. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The symmetric matrix of dimension (LDA, N). * On exit, the factor U or L from the Cholesky factorization * A = U**T*U or A = L*L**T. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the leading minor of order i of A is not * positive definite, so the factorization could not be * completed, and the solution has not been computed. */ int posv(Layout layout, UPLO uplo, int n, int nrhs, double[] A, int lda, double[] B, int ldb); /** * Solves a real system of linear equations. *

     *     A * X = B
     * 
* where A is an N-by-N symmetric positive definite matrix and X and B are N-by-NRHS matrices. * * The Cholesky decomposition is used to factor A as *

     *     A = U**T* U,  if UPLO = 'U'
     * 
* or *

     *     A = L * L**T,  if UPLO = 'L'
     * 
* where U is an upper triangular matrix and L is a lower triangular * matrix. The factored form of A is then used to solve the system of * equations A * X = B. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The symmetric matrix of dimension (LDA, N). * On exit, the factor U or L from the Cholesky factorization * A = U**T*U or A = L*L**T. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the leading minor of order i of A is not * positive definite, so the factorization could not be * completed, and the solution has not been computed. */ int posv(Layout layout, UPLO uplo, int n, int nrhs, DoubleBuffer A, int lda, DoubleBuffer B, int ldb); /** * Solves a real system of linear equations. *

     *     A * X = B
     * 
* where A is an N-by-N symmetric positive definite matrix and X and B are N-by-NRHS matrices. * * The Cholesky decomposition is used to factor A as *

     *     A = U**T* U,  if UPLO = 'U'
     * 
* or *

     *     A = L * L**T,  if UPLO = 'L'
     * 
* where U is an upper triangular matrix and L is a lower triangular * matrix. The factored form of A is then used to solve the system of * equations A * X = B. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The symmetric matrix of dimension (LDA, N). * On exit, the factor U or L from the Cholesky factorization * A = U**T*U or A = L*L**T. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the leading minor of order i of A is not * positive definite, so the factorization could not be * completed, and the solution has not been computed. */ int posv(Layout layout, UPLO uplo, int n, int nrhs, float[] A, int lda, float[] B, int ldb); /** * Solves a real system of linear equations. *

     *     A * X = B
     * 
* where A is an N-by-N symmetric positive definite matrix and X and B are N-by-NRHS matrices. * * The Cholesky decomposition is used to factor A as *

     *     A = U**T* U,  if UPLO = 'U'
     * 
* or *

     *     A = L * L**T,  if UPLO = 'L'
     * 
* where U is an upper triangular matrix and L is a lower triangular * matrix. The factored form of A is then used to solve the system of * equations A * X = B. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The symmetric matrix of dimension (LDA, N). * On exit, the factor U or L from the Cholesky factorization * A = U**T*U or A = L*L**T. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the leading minor of order i of A is not * positive definite, so the factorization could not be * completed, and the solution has not been computed. */ int posv(Layout layout, UPLO uplo, int n, int nrhs, FloatBuffer A, int lda, FloatBuffer B, int ldb); /** * Solves a real system of linear equations. *

     *     A * X = B
     * 
* where A is an N-by-N symmetric positive definite matrix and X and B are N-by-NRHS matrices. * * The Cholesky decomposition is used to factor A as *

     *     A = U**T* U,  if UPLO = 'U'
     * 
* or *

     *     A = L * L**T,  if UPLO = 'L'
     * 
* where U is an upper triangular matrix and L is a lower triangular * matrix. The factored form of A is then used to solve the system of * equations A * X = B. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The symmetric packed matrix. * On exit, the factor U or L from the Cholesky factorization * A = U**T*U or A = L*L**T, in the same storage format as A. * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the leading minor of order i of A is not * positive definite, so the factorization could not be * completed, and the solution has not been computed. */ int ppsv(Layout layout, UPLO uplo, int n, int nrhs, double[] A, double[] B, int ldb); /** * Solves a real system of linear equations. *

     *     A * X = B
     * 
* where A is an N-by-N symmetric positive definite matrix and X and B are N-by-NRHS matrices. * * The Cholesky decomposition is used to factor A as *

     *     A = U**T* U,  if UPLO = 'U'
     * 
* or *

     *     A = L * L**T,  if UPLO = 'L'
     * 
* where U is an upper triangular matrix and L is a lower triangular * matrix. The factored form of A is then used to solve the system of * equations A * X = B. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The symmetric packed matrix. * On exit, the factor U or L from the Cholesky factorization * A = U**T*U or A = L*L**T, in the same storage format as A. * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the leading minor of order i of A is not * positive definite, so the factorization could not be * completed, and the solution has not been computed. */ int ppsv(Layout layout, UPLO uplo, int n, int nrhs, DoubleBuffer A, DoubleBuffer B, int ldb); /** * Solves a real system of linear equations. *

     *     A * X = B
     * 
* where A is an N-by-N symmetric positive definite matrix and X and B are N-by-NRHS matrices. * * The Cholesky decomposition is used to factor A as *

     *     A = U**T* U,  if UPLO = 'U'
     * 
* or *

     *     A = L * L**T,  if UPLO = 'L'
     * 
* where U is an upper triangular matrix and L is a lower triangular * matrix. The factored form of A is then used to solve the system of * equations A * X = B. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The symmetric packed matrix. * On exit, the factor U or L from the Cholesky factorization * A = U**T*U or A = L*L**T, in the same storage format as A. * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the leading minor of order i of A is not * positive definite, so the factorization could not be * completed, and the solution has not been computed. */ int ppsv(Layout layout, UPLO uplo, int n, int nrhs, float[] A, float[] B, int ldb); /** * Solves a real system of linear equations. *

     *     A * X = B
     * 
* where A is an N-by-N symmetric positive definite matrix and X and B are N-by-NRHS matrices. * * The Cholesky decomposition is used to factor A as *

     *     A = U**T* U,  if UPLO = 'U'
     * 
* or *

     *     A = L * L**T,  if UPLO = 'L'
     * 
* where U is an upper triangular matrix and L is a lower triangular * matrix. The factored form of A is then used to solve the system of * equations A * X = B. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The symmetric packed matrix. * On exit, the factor U or L from the Cholesky factorization * A = U**T*U or A = L*L**T, in the same storage format as A. * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the leading minor of order i of A is not * positive definite, so the factorization could not be * completed, and the solution has not been computed. */ int ppsv(Layout layout, UPLO uplo, int n, int nrhs, FloatBuffer A, FloatBuffer B, int ldb); /** * Solves a real system of linear equations. *

     *     A * X = B
     * 
* where A is an N-by-N band matrix and X and B are N-by-NRHS matrices. * * The LU decomposition with partial pivoting and row interchanges is * used to factor A as *

     *     A = P * L * U
     * 
* where P is a permutation matrix, L is unit lower triangular, and U is * upper triangular. The factored form of A is then used to solve the * system of equations A * X = B. * * @param layout The matrix layout. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param kl the number of subdiagonal elements of band matrix. * * @param ku the number of superdiagonal elements of band matrix. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The matrix of dimension (LDA, N). * On entry, the matrix A in band storage, in rows KL+1 to * 2*KL+KU+1; rows 1 to KL of the array need not be set. * The j-th column of A is stored in the j-th column of the * matrix AB as follows: * AB(KL+KU+1+i-j,j) = A(i,j) for max(1,j-KU)<=i<=min(N,j+KL) * * On exit, details of the factorization: U is stored as an * upper triangular band matrix with KL+KU superdiagonals in * rows 1 to KL+KU+1, and the multipliers used during the * factorization are stored in rows KL+KU+2 to 2*KL+KU+1. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param ipiv The pivot indices that define the permutation matrix P; * row i of the matrix was interchanged with row IPIV(i). * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, U(i,i) is exactly zero. The factorization * has been completed, but the factor U is exactly * singular, so the solution could not be computed. */ int gbsv(Layout layout, int n, int kl, int ku, int nrhs, double[] A, int lda, int[] ipiv, double[] B, int ldb); /** * Solves a real system of linear equations. *

     *     A * X = B
     * 
* where A is an N-by-N band matrix and X and B are N-by-NRHS matrices. * * The LU decomposition with partial pivoting and row interchanges is * used to factor A as *

     *     A = P * L * U
     * 
* where P is a permutation matrix, L is unit lower triangular, and U is * upper triangular. The factored form of A is then used to solve the * system of equations A * X = B. * * @param layout The matrix layout. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param kl the number of subdiagonal elements of band matrix. * * @param ku the number of superdiagonal elements of band matrix. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The matrix of dimension (LDA, N). * On entry, the matrix A in band storage, in rows KL+1 to * 2*KL+KU+1; rows 1 to KL of the array need not be set. * The j-th column of A is stored in the j-th column of the * matrix AB as follows: * AB(KL+KU+1+i-j,j) = A(i,j) for max(1,j-KU)<=i<=min(N,j+KL) * * On exit, details of the factorization: U is stored as an * upper triangular band matrix with KL+KU superdiagonals in * rows 1 to KL+KU+1, and the multipliers used during the * factorization are stored in rows KL+KU+2 to 2*KL+KU+1. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param ipiv The pivot indices that define the permutation matrix P; * row i of the matrix was interchanged with row IPIV(i). * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, U(i,i) is exactly zero. The factorization * has been completed, but the factor U is exactly * singular, so the solution could not be computed. */ int gbsv(Layout layout, int n, int kl, int ku, int nrhs, DoubleBuffer A, int lda, IntBuffer ipiv, DoubleBuffer B, int ldb); /** * Solves a real system of linear equations. *

     *     A * X = B
     * 
* where A is an N-by-N band matrix and X and B are N-by-NRHS matrices. * * The LU decomposition with partial pivoting and row interchanges is * used to factor A as *

     *     A = P * L * U
     * 
* where P is a permutation matrix, L is unit lower triangular, and U is * upper triangular. The factored form of A is then used to solve the * system of equations A * X = B. * * @param layout The matrix layout. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param kl the number of subdiagonal elements of band matrix. * * @param ku the number of superdiagonal elements of band matrix. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The matrix of dimension (LDA, N). * On entry, the matrix A in band storage, in rows KL+1 to * 2*KL+KU+1; rows 1 to KL of the array need not be set. * The j-th column of A is stored in the j-th column of the * matrix AB as follows: * AB(KL+KU+1+i-j,j) = A(i,j) for max(1,j-KU)<=i<=min(N,j+KL) * * On exit, details of the factorization: U is stored as an * upper triangular band matrix with KL+KU superdiagonals in * rows 1 to KL+KU+1, and the multipliers used during the * factorization are stored in rows KL+KU+2 to 2*KL+KU+1. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param ipiv The pivot indices that define the permutation matrix P; * row i of the matrix was interchanged with row IPIV(i). * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, U(i,i) is exactly zero. The factorization * has been completed, but the factor U is exactly * singular, so the solution could not be computed. */ int gbsv(Layout layout, int n, int kl, int ku, int nrhs, float[] A, int lda, int[] ipiv, float[] B, int ldb); /** * Solves a real system of linear equations. *

     *     A * X = B
     * 
* where A is an N-by-N band matrix and X and B are N-by-NRHS matrices. * * The LU decomposition with partial pivoting and row interchanges is * used to factor A as *

     *     A = P * L * U
     * 
* where P is a permutation matrix, L is unit lower triangular, and U is * upper triangular. The factored form of A is then used to solve the * system of equations A * X = B. * * @param layout The matrix layout. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param kl the number of subdiagonal elements of band matrix. * * @param ku the number of superdiagonal elements of band matrix. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The matrix of dimension (LDA, N). * On entry, the matrix A in band storage, in rows KL+1 to * 2*KL+KU+1; rows 1 to KL of the array need not be set. * The j-th column of A is stored in the j-th column of the * matrix AB as follows: * AB(KL+KU+1+i-j,j) = A(i,j) for max(1,j-KU)<=i<=min(N,j+KL) * * On exit, details of the factorization: U is stored as an * upper triangular band matrix with KL+KU superdiagonals in * rows 1 to KL+KU+1, and the multipliers used during the * factorization are stored in rows KL+KU+2 to 2*KL+KU+1. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param ipiv The pivot indices that define the permutation matrix P; * row i of the matrix was interchanged with row IPIV(i). * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, U(i,i) is exactly zero. The factorization * has been completed, but the factor U is exactly * singular, so the solution could not be computed. */ int gbsv(Layout layout, int n, int kl, int ku, int nrhs, FloatBuffer A, int lda, IntBuffer ipiv, FloatBuffer B, int ldb); /** * Solves an overdetermined or underdetermined system, using a QR or LQ * factorization of A. It is assumed that A has full rank. * * @param layout The matrix layout. * * @param trans The normal or transpose of the matrix A. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The matrix of dimension (LDA, N). * On exit, the factors L and U from the factorization * A = P*L*U; the unit diagonal elements of L are not stored. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the i-th diagonal element of the * triangular factor of A is zero, so that A does not have * full rank; the least squares solution could not be * computed. */ int gels(Layout layout, Transpose trans, int m, int n, int nrhs, double[] A, int lda, double[] B, int ldb); /** * Solves an overdetermined or underdetermined system, using a QR or LQ * factorization of A. It is assumed that A has full rank. * * @param layout The matrix layout. * * @param trans The normal or transpose of the matrix A. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The matrix of dimension (LDA, N). * On exit, the factors L and U from the factorization * A = P*L*U; the unit diagonal elements of L are not stored. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the i-th diagonal element of the * triangular factor of A is zero, so that A does not have * full rank; the least squares solution could not be * computed. */ int gels(Layout layout, Transpose trans, int m, int n, int nrhs, DoubleBuffer A, int lda, DoubleBuffer B, int ldb); /** * Solves an overdetermined or underdetermined system, using a QR or LQ * factorization of A. It is assumed that A has full rank. * * @param layout The matrix layout. * * @param trans The normal or transpose of the matrix A. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The matrix of dimension (LDA, N). * On exit, the factors L and U from the factorization * A = P*L*U; the unit diagonal elements of L are not stored. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the i-th diagonal element of the * triangular factor of A is zero, so that A does not have * full rank; the least squares solution could not be * computed. */ int gels(Layout layout, Transpose trans, int m, int n, int nrhs, float[] A, int lda, float[] B, int ldb); /** * Solves an overdetermined or underdetermined system, using a QR or LQ * factorization of A. It is assumed that A has full rank. * * @param layout The matrix layout. * * @param trans The normal or transpose of the matrix A. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The matrix of dimension (LDA, N). * On exit, the factors L and U from the factorization * A = P*L*U; the unit diagonal elements of L are not stored. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the i-th diagonal element of the * triangular factor of A is zero, so that A does not have * full rank; the least squares solution could not be * computed. */ int gels(Layout layout, Transpose trans, int m, int n, int nrhs, FloatBuffer A, int lda, FloatBuffer B, int ldb); /** * Solves an overdetermined or underdetermined system, using a complete * orthogonal factorization of A. A may be rank-deficient. * * @param layout The matrix layout. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The matrix of dimension (LDA, N). * On exit, A is overwritten by the factorization. * * @param lda The leading dimension of the matrix A. LDA >= max(1,M). * * @param B The right hand side matrix of dimension (LDB, NRHS). * On exit, if INFO = 0, B is overwritten by the solution * vectors, stored columnwise. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,M,N). * * @param jpvt On entry, if JPVT(i) != 0, the i-th column of A is permuted * to the front of AP, otherwise column i is a free column. * On exit, if JPVT(i) = k, then the i-th column of AP * was the k-th column of A. * * @param rcond RCOND is used to determine the effective rank of A, which * is defined as the order of the largest leading triangular * submatrix R11 in the QR factorization with pivoting of A, * whose estimated condition number < 1/RCOND. * * @param rank The effective rank of A, i.e., the order of the submatrix * R11. This is the same as the order of the submatrix T11 * in the complete orthogonal factorization of A. * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the i-th diagonal element of the * triangular factor of A is zero, so that A does not have * full rank; the least squares solution could not be * computed. */ int gelsy(Layout layout, int m, int n, int nrhs, double[] A, int lda, double[] B, int ldb, int[] jpvt, double rcond, int[] rank); /** * Solves an overdetermined or underdetermined system, using a complete * orthogonal factorization of A. A may be rank-deficient. * * @param layout The matrix layout. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The matrix of dimension (LDA, N). * On exit, A is overwritten by the factorization. * * @param lda The leading dimension of the matrix A. LDA >= max(1,M). * * @param B The right hand side matrix of dimension (LDB, NRHS). * On exit, if INFO = 0, B is overwritten by the solution * vectors, stored columnwise. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,M,N). * * @param jpvt On entry, if JPVT(i) != 0, the i-th column of A is permuted * to the front of AP, otherwise column i is a free column. * On exit, if JPVT(i) = k, then the i-th column of AP * was the k-th column of A. * * @param rcond RCOND is used to determine the effective rank of A, which * is defined as the order of the largest leading triangular * submatrix R11 in the QR factorization with pivoting of A, * whose estimated condition number < 1/RCOND. * * @param rank The effective rank of A, i.e., the order of the submatrix * R11. This is the same as the order of the submatrix T11 * in the complete orthogonal factorization of A. * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the i-th diagonal element of the * triangular factor of A is zero, so that A does not have * full rank; the least squares solution could not be * computed. */ int gelsy(Layout layout, int m, int n, int nrhs, DoubleBuffer A, int lda, DoubleBuffer B, int ldb, IntBuffer jpvt, double rcond, IntBuffer rank); /** * Solves an overdetermined or underdetermined system, using a complete * orthogonal factorization of A. A may be rank-deficient. * * @param layout The matrix layout. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The matrix of dimension (LDA, N). * On exit, A is overwritten by the factorization. * * @param lda The leading dimension of the matrix A. LDA >= max(1,M). * * @param B The right hand side matrix of dimension (LDB, NRHS). * On exit, if INFO = 0, B is overwritten by the solution * vectors, stored columnwise. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,M,N). * * @param jpvt On entry, if JPVT(i) != 0, the i-th column of A is permuted * to the front of AP, otherwise column i is a free column. * On exit, if JPVT(i) = k, then the i-th column of AP * was the k-th column of A. * * @param rcond RCOND is used to determine the effective rank of A, which * is defined as the order of the largest leading triangular * submatrix R11 in the QR factorization with pivoting of A, * whose estimated condition number < 1/RCOND. * * @param rank The effective rank of A, i.e., the order of the submatrix * R11. This is the same as the order of the submatrix T11 * in the complete orthogonal factorization of A. * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the i-th diagonal element of the * triangular factor of A is zero, so that A does not have * full rank; the least squares solution could not be * computed. */ int gelsy(Layout layout, int m, int n, int nrhs, float[] A, int lda, float[] B, int ldb, int[] jpvt, float rcond, int[] rank); /** * Solves an overdetermined or underdetermined system, using a complete * orthogonal factorization of A. A may be rank-deficient. * * @param layout The matrix layout. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The matrix of dimension (LDA, N). * On exit, A is overwritten by the factorization. * * @param lda The leading dimension of the matrix A. LDA >= max(1,M). * * @param B The right hand side matrix of dimension (LDB, NRHS). * On exit, if INFO = 0, B is overwritten by the solution * vectors, stored columnwise. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,M,N). * * @param jpvt On entry, if JPVT(i) != 0, the i-th column of A is permuted * to the front of AP, otherwise column i is a free column. * On exit, if JPVT(i) = k, then the i-th column of AP * was the k-th column of A. * * @param rcond RCOND is used to determine the effective rank of A, which * is defined as the order of the largest leading triangular * submatrix R11 in the QR factorization with pivoting of A, * whose estimated condition number < 1/RCOND. * * @param rank The effective rank of A, i.e., the order of the submatrix * R11. This is the same as the order of the submatrix T11 * in the complete orthogonal factorization of A. * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the i-th diagonal element of the * triangular factor of A is zero, so that A does not have * full rank; the least squares solution could not be * computed. */ int gelsy(Layout layout, int m, int n, int nrhs, FloatBuffer A, int lda, FloatBuffer B, int ldb, IntBuffer jpvt, float rcond, IntBuffer rank); /** * Solves an overdetermined or underdetermined system, using the singular * value decomposition (SVD) of A. A may be rank-deficient. * * The effective rank of A is determined by treating as zero those * singular values which are less than RCOND times the largest singular * value. * * @param layout The matrix layout. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The matrix of dimension (LDA, N). * On exit, A is overwritten by the factorization. * * @param lda The leading dimension of the matrix A. LDA >= max(1,M). * * @param B The right hand side matrix of dimension (LDB, NRHS). * On exit, if INFO = 0, B is overwritten by the solution * vectors, stored columnwise. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,M,N). * * @param s The singular values of A in decreasing order. * The condition number of A in the 2-norm = S(1)/S(min(m,n)). * * @param rcond RCOND is used to determine the effective rank of A. * Singular values S(i) <= RCOND*S(1) are treated as zero. * If RCOND < 0, machine precision is used instead. * * @param rank The effective rank of A, i.e., the number of singular values * which are greater than RCOND*S(1). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the i-th diagonal element of the * triangular factor of A is zero, so that A does not have * full rank; the least squares solution could not be * computed. */ int gelss(Layout layout, int m, int n, int nrhs, double[] A, int lda, double[] B, int ldb, double[] s, double rcond, int[] rank); /** * Solves an overdetermined or underdetermined system, using the singular * value decomposition (SVD) of A. A may be rank-deficient. * * The effective rank of A is determined by treating as zero those * singular values which are less than RCOND times the largest singular * value. * * @param layout The matrix layout. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The matrix of dimension (LDA, N). * On exit, A is overwritten by the factorization. * * @param lda The leading dimension of the matrix A. LDA >= max(1,M). * * @param B The right hand side matrix of dimension (LDB, NRHS). * On exit, if INFO = 0, B is overwritten by the solution * vectors, stored columnwise. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,M,N). * * @param s The singular values of A in decreasing order. * The condition number of A in the 2-norm = S(1)/S(min(m,n)). * * @param rcond RCOND is used to determine the effective rank of A. * Singular values S(i) <= RCOND*S(1) are treated as zero. * If RCOND < 0, machine precision is used instead. * * @param rank The effective rank of A, i.e., the number of singular values * which are greater than RCOND*S(1). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the i-th diagonal element of the * triangular factor of A is zero, so that A does not have * full rank; the least squares solution could not be * computed. */ int gelss(Layout layout, int m, int n, int nrhs, DoubleBuffer A, int lda, DoubleBuffer B, int ldb, DoubleBuffer s, double rcond, IntBuffer rank); /** * Solves an overdetermined or underdetermined system, using the singular * value decomposition (SVD) of A. A may be rank-deficient. * * The effective rank of A is determined by treating as zero those * singular values which are less than RCOND times the largest singular * value. * * @param layout The matrix layout. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The matrix of dimension (LDA, N). * On exit, A is overwritten by the factorization. * * @param lda The leading dimension of the matrix A. LDA >= max(1,M). * * @param B The right hand side matrix of dimension (LDB, NRHS). * On exit, if INFO = 0, B is overwritten by the solution * vectors, stored columnwise. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,M,N). * * @param s The singular values of A in decreasing order. * The condition number of A in the 2-norm = S(1)/S(min(m,n)). * * @param rcond RCOND is used to determine the effective rank of A. * Singular values S(i) <= RCOND*S(1) are treated as zero. * If RCOND < 0, machine precision is used instead. * * @param rank The effective rank of A, i.e., the number of singular values * which are greater than RCOND*S(1). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the i-th diagonal element of the * triangular factor of A is zero, so that A does not have * full rank; the least squares solution could not be * computed. */ int gelss(Layout layout, int m, int n, int nrhs, float[] A, int lda, float[] B, int ldb, float[] s, float rcond, int[] rank); /** * Solves an overdetermined or underdetermined system, using the singular * value decomposition (SVD) of A. A may be rank-deficient. * * The effective rank of A is determined by treating as zero those * singular values which are less than RCOND times the largest singular * value. * * @param layout The matrix layout. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The matrix of dimension (LDA, N). * On exit, A is overwritten by the factorization. * * @param lda The leading dimension of the matrix A. LDA >= max(1,M). * * @param B The right hand side matrix of dimension (LDB, NRHS). * On exit, if INFO = 0, B is overwritten by the solution * vectors, stored columnwise. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,M,N). * * @param s The singular values of A in decreasing order. * The condition number of A in the 2-norm = S(1)/S(min(m,n)). * * @param rcond RCOND is used to determine the effective rank of A. * Singular values S(i) <= RCOND*S(1) are treated as zero. * If RCOND < 0, machine precision is used instead. * * @param rank The effective rank of A, i.e., the number of singular values * which are greater than RCOND*S(1). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the i-th diagonal element of the * triangular factor of A is zero, so that A does not have * full rank; the least squares solution could not be * computed. */ int gelss(Layout layout, int m, int n, int nrhs, FloatBuffer A, int lda, FloatBuffer B, int ldb, FloatBuffer s, float rcond, IntBuffer rank); /** * Solves an overdetermined or underdetermined system, using a divide * and conquer algorithm with the singular value decomposition (SVD) of A. * A may be rank-deficient. * * The effective rank of A is determined by treating as zero those * singular values which are less than RCOND times the largest singular * value. * * @param layout The matrix layout. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The matrix of dimension (LDA, N). * On exit, A is overwritten by the factorization. * * @param lda The leading dimension of the matrix A. LDA >= max(1,M). * * @param B The right hand side matrix of dimension (LDB, NRHS). * On exit, if INFO = 0, B is overwritten by the solution * vectors, stored columnwise. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,M,N). * * @param s The singular values of A in decreasing order. * The condition number of A in the 2-norm = S(1)/S(min(m,n)). * * @param rcond RCOND is used to determine the effective rank of A. * Singular values S(i) <= RCOND*S(1) are treated as zero. * If RCOND < 0, machine precision is used instead. * * @param rank The effective rank of A, i.e., the number of singular values * which are greater than RCOND*S(1). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the i-th diagonal element of the * triangular factor of A is zero, so that A does not have * full rank; the least squares solution could not be * computed. */ int gelsd(Layout layout, int m, int n, int nrhs, double[] A, int lda, double[] B, int ldb, double[] s, double rcond, int[] rank); /** * Solves an overdetermined or underdetermined system, using a divide * and conquer algorithm with the singular value decomposition (SVD) of A. * A may be rank-deficient. * * The effective rank of A is determined by treating as zero those * singular values which are less than RCOND times the largest singular * value. * * @param layout The matrix layout. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The matrix of dimension (LDA, N). * On exit, A is overwritten by the factorization. * * @param lda The leading dimension of the matrix A. LDA >= max(1,M). * * @param B The right hand side matrix of dimension (LDB, NRHS). * On exit, if INFO = 0, B is overwritten by the solution * vectors, stored columnwise. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,M,N). * * @param s The singular values of A in decreasing order. * The condition number of A in the 2-norm = S(1)/S(min(m,n)). * * @param rcond RCOND is used to determine the effective rank of A. * Singular values S(i) <= RCOND*S(1) are treated as zero. * If RCOND < 0, machine precision is used instead. * * @param rank The effective rank of A, i.e., the number of singular values * which are greater than RCOND*S(1). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the i-th diagonal element of the * triangular factor of A is zero, so that A does not have * full rank; the least squares solution could not be * computed. */ int gelsd(Layout layout, int m, int n, int nrhs, DoubleBuffer A, int lda, DoubleBuffer B, int ldb, DoubleBuffer s, double rcond, IntBuffer rank); /** * Solves an overdetermined or underdetermined system, using a divide * and conquer algorithm with the singular value decomposition (SVD) of A. * A may be rank-deficient. * * The effective rank of A is determined by treating as zero those * singular values which are less than RCOND times the largest singular * value. * * @param layout The matrix layout. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The matrix of dimension (LDA, N). * On exit, A is overwritten by the factorization. * * @param lda The leading dimension of the matrix A. LDA >= max(1,M). * * @param B The right hand side matrix of dimension (LDB, NRHS). * On exit, if INFO = 0, B is overwritten by the solution * vectors, stored columnwise. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,M,N). * * @param s The singular values of A in decreasing order. * The condition number of A in the 2-norm = S(1)/S(min(m,n)). * * @param rcond RCOND is used to determine the effective rank of A. * Singular values S(i) <= RCOND*S(1) are treated as zero. * If RCOND < 0, machine precision is used instead. * * @param rank The effective rank of A, i.e., the number of singular values * which are greater than RCOND*S(1). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the i-th diagonal element of the * triangular factor of A is zero, so that A does not have * full rank; the least squares solution could not be * computed. */ int gelsd(Layout layout, int m, int n, int nrhs, float[] A, int lda, float[] B, int ldb, float[] s, float rcond, int[] rank); /** * Solves an overdetermined or underdetermined system, using a divide * and conquer algorithm with the singular value decomposition (SVD) of A. * A may be rank-deficient. * * The effective rank of A is determined by treating as zero those * singular values which are less than RCOND times the largest singular * value. * * @param layout The matrix layout. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The matrix of dimension (LDA, N). * On exit, A is overwritten by the factorization. * * @param lda The leading dimension of the matrix A. LDA >= max(1,M). * * @param B The right hand side matrix of dimension (LDB, NRHS). * On exit, if INFO = 0, B is overwritten by the solution * vectors, stored columnwise. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,M,N). * * @param s The singular values of A in decreasing order. * The condition number of A in the 2-norm = S(1)/S(min(m,n)). * * @param rcond RCOND is used to determine the effective rank of A. * Singular values S(i) <= RCOND*S(1) are treated as zero. * If RCOND < 0, machine precision is used instead. * * @param rank The effective rank of A, i.e., the number of singular values * which are greater than RCOND*S(1). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the i-th diagonal element of the * triangular factor of A is zero, so that A does not have * full rank; the least squares solution could not be * computed. */ int gelsd(Layout layout, int m, int n, int nrhs, FloatBuffer A, int lda, FloatBuffer B, int ldb, FloatBuffer s, float rcond, IntBuffer rank); /** * Solves a linear equality-constrained least squares (LSE) problem. *

     *     minimize || c - A*x ||_2   subject to   B*x = d
     * 
* where A is an M-by-N matrix, B is a P-by-N matrix, c is a given * M-vector, and d is a given P-vector. It is assumed that * P <= N <= M+P, and *

     *     rank(B) = P and  rank( (A) ) = N
     *                          ( (B) )
     * 
* * These conditions ensure that the LSE problem has a unique solution, * which is obtained using a generalized RQ factorization of the * matrices (B, A) given by *

     *     B = (0 R)*Q,   A = Z*T*Q
     * 
* * @param layout The matrix layout. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A and B. * * @param p The number of rows of the matrix B. 0 <= P <= N <= M+P. * * @param A The matrix of dimension (LDA, N). * On exit, the elements on and above the diagonal of the array * contain the min(M,N)-by-N upper trapezoidal matrix T. * * @param lda The leading dimension of the matrix A. LDA >= max(1,M). * * @param B On entry, the P-by-N matrix B. * On exit, the upper triangle of the submatrix B(1:P,N-P+1:N) * contains the P-by-P upper triangular matrix R. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,P). * * @param c Dimension (M). * On entry, C contains the right hand side vector for the * least squares part of the LSE problem. * On exit, the residual sum of squares for the solution * is given by the sum of squares of elements N-P+1 to M of * vector C. * * @param d Dimension (P). * On entry, D contains the right hand side vector for the * constrained equation. * On exit, D is destroyed. * * @param x Dimension (N). * On exit, X is the solution of the LSE problem. * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * = 1: the upper triangular factor R associated with B in the * generalized RQ factorization of the pair (B, A) is * singular, so that rank(B) < P; the least squares * solution could not be computed. * = 2: the (N-P) by (N-P) part of the upper trapezoidal factor * T associated with A in the generalized RQ factorization * of the pair (B, A) is singular, so that * rank( A, B ) < N; the least squares solution could not * be computed. */ int gglse(Layout layout, int m, int n, int p, double[] A, int lda, double[] B, int ldb, double[] c, double[] d, double[] x); /** * Solves a linear equality-constrained least squares (LSE) problem. *

     *     minimize || c - A*x ||_2   subject to   B*x = d
     * 
* where A is an M-by-N matrix, B is a P-by-N matrix, c is a given * M-vector, and d is a given P-vector. It is assumed that * P <= N <= M+P, and *

     *     rank(B) = P and  rank( (A) ) = N
     *                          ( (B) )
     * 
* * These conditions ensure that the LSE problem has a unique solution, * which is obtained using a generalized RQ factorization of the * matrices (B, A) given by *

     *     B = (0 R)*Q,   A = Z*T*Q
     * 
* * @param layout The matrix layout. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A and B. * * @param p The number of rows of the matrix B. 0 <= P <= N <= M+P. * * @param A The matrix of dimension (LDA, N). * On exit, the elements on and above the diagonal of the array * contain the min(M,N)-by-N upper trapezoidal matrix T. * * @param lda The leading dimension of the matrix A. LDA >= max(1,M). * * @param B On entry, the P-by-N matrix B. * On exit, the upper triangle of the submatrix B(1:P,N-P+1:N) * contains the P-by-P upper triangular matrix R. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,P). * * @param c Dimension (M). * On entry, C contains the right hand side vector for the * least squares part of the LSE problem. * On exit, the residual sum of squares for the solution * is given by the sum of squares of elements N-P+1 to M of * vector C. * * @param d Dimension (P). * On entry, D contains the right hand side vector for the * constrained equation. * On exit, D is destroyed. * * @param x Dimension (N). * On exit, X is the solution of the LSE problem. * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * = 1: the upper triangular factor R associated with B in the * generalized RQ factorization of the pair (B, A) is * singular, so that rank(B) < P; the least squares * solution could not be computed. * = 2: the (N-P) by (N-P) part of the upper trapezoidal factor * T associated with A in the generalized RQ factorization * of the pair (B, A) is singular, so that * rank( A, B ) < N; the least squares solution could not * be computed. */ int gglse(Layout layout, int m, int n, int p, DoubleBuffer A, int lda, DoubleBuffer B, int ldb, DoubleBuffer c, DoubleBuffer d, DoubleBuffer x); /** * Solves a linear equality-constrained least squares (LSE) problem. *

     *     minimize || c - A*x ||_2   subject to   B*x = d
     * 
* where A is an M-by-N matrix, B is a P-by-N matrix, c is a given * M-vector, and d is a given P-vector. It is assumed that * P <= N <= M+P, and *

     *     rank(B) = P and  rank( (A) ) = N
     *                          ( (B) )
     * 
* * These conditions ensure that the LSE problem has a unique solution, * which is obtained using a generalized RQ factorization of the * matrices (B, A) given by *

     *     B = (0 R)*Q,   A = Z*T*Q
     * 
* * @param layout The matrix layout. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A and B. * * @param p The number of rows of the matrix B. 0 <= P <= N <= M+P. * * @param A The matrix of dimension (LDA, N). * On exit, the elements on and above the diagonal of the array * contain the min(M,N)-by-N upper trapezoidal matrix T. * * @param lda The leading dimension of the matrix A. LDA >= max(1,M). * * @param B On entry, the P-by-N matrix B. * On exit, the upper triangle of the submatrix B(1:P,N-P+1:N) * contains the P-by-P upper triangular matrix R. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,P). * * @param c Dimension (M). * On entry, C contains the right hand side vector for the * least squares part of the LSE problem. * On exit, the residual sum of squares for the solution * is given by the sum of squares of elements N-P+1 to M of * vector C. * * @param d Dimension (P). * On entry, D contains the right hand side vector for the * constrained equation. * On exit, D is destroyed. * * @param x Dimension (N). * On exit, X is the solution of the LSE problem. * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * = 1: the upper triangular factor R associated with B in the * generalized RQ factorization of the pair (B, A) is * singular, so that rank(B) < P; the least squares * solution could not be computed. * = 2: the (N-P) by (N-P) part of the upper trapezoidal factor * T associated with A in the generalized RQ factorization * of the pair (B, A) is singular, so that * rank( A, B ) < N; the least squares solution could not * be computed. */ int gglse(Layout layout, int m, int n, int p, float[] A, int lda, float[] B, int ldb, float[] c, float[] d, float[] x); /** * Solves a linear equality-constrained least squares (LSE) problem. *

     *     minimize || c - A*x ||_2   subject to   B*x = d
     * 
* where A is an M-by-N matrix, B is a P-by-N matrix, c is a given * M-vector, and d is a given P-vector. It is assumed that * P <= N <= M+P, and *

     *     rank(B) = P and  rank( (A) ) = N
     *                          ( (B) )
     * 
* * These conditions ensure that the LSE problem has a unique solution, * which is obtained using a generalized RQ factorization of the * matrices (B, A) given by *

     *     B = (0 R)*Q,   A = Z*T*Q
     * 
* * @param layout The matrix layout. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A and B. * * @param p The number of rows of the matrix B. 0 <= P <= N <= M+P. * * @param A The matrix of dimension (LDA, N). * On exit, the elements on and above the diagonal of the array * contain the min(M,N)-by-N upper trapezoidal matrix T. * * @param lda The leading dimension of the matrix A. LDA >= max(1,M). * * @param B On entry, the P-by-N matrix B. * On exit, the upper triangle of the submatrix B(1:P,N-P+1:N) * contains the P-by-P upper triangular matrix R. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,P). * * @param c Dimension (M). * On entry, C contains the right hand side vector for the * least squares part of the LSE problem. * On exit, the residual sum of squares for the solution * is given by the sum of squares of elements N-P+1 to M of * vector C. * * @param d Dimension (P). * On entry, D contains the right hand side vector for the * constrained equation. * On exit, D is destroyed. * * @param x Dimension (N). * On exit, X is the solution of the LSE problem. * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * = 1: the upper triangular factor R associated with B in the * generalized RQ factorization of the pair (B, A) is * singular, so that rank(B) < P; the least squares * solution could not be computed. * = 2: the (N-P) by (N-P) part of the upper trapezoidal factor * T associated with A in the generalized RQ factorization * of the pair (B, A) is singular, so that * rank( A, B ) < N; the least squares solution could not * be computed. */ int gglse(Layout layout, int m, int n, int p, FloatBuffer A, int lda, FloatBuffer B, int ldb, FloatBuffer c, FloatBuffer d, FloatBuffer x); /** * Solves a general Gauss-Markov linear model (GLM) problem. *

     *     minimize || y ||_2   subject to   d = A*x + B*y
     *         x
     * 
* where A is an N-by-M matrix, B is an N-by-P matrix, and d is a * given N-vector. It is assumed that M <= N <= M+P, and *

     *     rank(A) = M    and    rank( A B ) = N
     * 
* * Under these assumptions, the constrained equation is always * consistent, and there is a unique solution x and a minimal 2-norm * solution y, which is obtained using a generalized QR factorization * of the matrices (A, B) given by *

     *     A = Q*(R),   B = Q*T*Z
     *           (0)
     * 
* * In particular, if matrix B is square nonsingular, then the problem * GLM is equivalent to the following weighted linear least squares * problem * *

     *     minimize || inv(B)*(d-A*x) ||_2
     *         x
     * 
* where inv(B) denotes the inverse of B. * * @param layout The matrix layout. * * @param n The number of rows of the matrix A and B. * * @param m The number of columns of the matrix A. 0 <= M <= N. * * @param p The number of columns of the matrix B. P >= N-M. * * @param A The matrix of dimension (LDA, M). * On exit, the upper triangular part of the matrix A contains * the M-by-M upper triangular matrix R. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param B On entry, the N-by-P matrix B. * On exit, if N <= P, the upper triangle of the subarray * B(1:N,P-N+1:P) contains the N-by-N upper triangular matrix T; * if N > P, the elements on and above the (N-P)th subdiagonal * contain the N-by-P upper trapezoidal matrix T. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @param d Dimension (N). * On entry, D is the left hand side of the GLM equation. * On exit, D is destroyed. * * @param x Dimension (M). * On exit, X and Y are the solutions of the GLM problem. * * @param y Dimension (P). * On exit, X and Y are the solutions of the GLM problem. * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * = 1: the upper triangular factor R associated with A in the * generalized QR factorization of the pair (A, B) is * singular, so that rank(A) < M; the least squares * solution could not be computed. * = 2: the bottom (N-M) by (N-M) part of the upper trapezoidal * factor T associated with B in the generalized QR * factorization of the pair (A, B) is singular, so that * rank( A B ) < N; the least squares solution could not * be computed. */ int ggglm(Layout layout, int n, int m, int p, double[] A, int lda, double[] B, int ldb, double[] d, double[] x, double[] y); /** * Solves a general Gauss-Markov linear model (GLM) problem. *

     *     minimize || y ||_2   subject to   d = A*x + B*y
     *         x
     * 
* where A is an N-by-M matrix, B is an N-by-P matrix, and d is a * given N-vector. It is assumed that M <= N <= M+P, and *

     *     rank(A) = M    and    rank( A B ) = N
     * 
* * Under these assumptions, the constrained equation is always * consistent, and there is a unique solution x and a minimal 2-norm * solution y, which is obtained using a generalized QR factorization * of the matrices (A, B) given by *

     *     A = Q*(R),   B = Q*T*Z
     *           (0)
     * 
* * In particular, if matrix B is square nonsingular, then the problem * GLM is equivalent to the following weighted linear least squares * problem * *

     *     minimize || inv(B)*(d-A*x) ||_2
     *         x
     * 
* where inv(B) denotes the inverse of B. * * @param layout The matrix layout. * * @param n The number of rows of the matrix A and B. * * @param m The number of columns of the matrix A. 0 <= M <= N. * * @param p The number of columns of the matrix B. P >= N-M. * * @param A The matrix of dimension (LDA, M). * On exit, the upper triangular part of the matrix A contains * the M-by-M upper triangular matrix R. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param B On entry, the N-by-P matrix B. * On exit, if N <= P, the upper triangle of the subarray * B(1:N,P-N+1:P) contains the N-by-N upper triangular matrix T; * if N > P, the elements on and above the (N-P)th subdiagonal * contain the N-by-P upper trapezoidal matrix T. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @param d Dimension (N). * On entry, D is the left hand side of the GLM equation. * On exit, D is destroyed. * * @param x Dimension (M). * On exit, X and Y are the solutions of the GLM problem. * * @param y Dimension (P). * On exit, X and Y are the solutions of the GLM problem. * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * = 1: the upper triangular factor R associated with A in the * generalized QR factorization of the pair (A, B) is * singular, so that rank(A) < M; the least squares * solution could not be computed. * = 2: the bottom (N-M) by (N-M) part of the upper trapezoidal * factor T associated with B in the generalized QR * factorization of the pair (A, B) is singular, so that * rank( A B ) < N; the least squares solution could not * be computed. */ int ggglm(Layout layout, int n, int m, int p, DoubleBuffer A, int lda, DoubleBuffer B, int ldb, DoubleBuffer d, DoubleBuffer x, DoubleBuffer y); /** * Solves a general Gauss-Markov linear model (GLM) problem. *

     *     minimize || y ||_2   subject to   d = A*x + B*y
     *         x
     * 
* where A is an N-by-M matrix, B is an N-by-P matrix, and d is a * given N-vector. It is assumed that M <= N <= M+P, and *

     *     rank(A) = M    and    rank( A B ) = N
     * 
* * Under these assumptions, the constrained equation is always * consistent, and there is a unique solution x and a minimal 2-norm * solution y, which is obtained using a generalized QR factorization * of the matrices (A, B) given by *

     *     A = Q*(R),   B = Q*T*Z
     *           (0)
     * 
* * In particular, if matrix B is square nonsingular, then the problem * GLM is equivalent to the following weighted linear least squares * problem * *

     *     minimize || inv(B)*(d-A*x) ||_2
     *         x
     * 
* where inv(B) denotes the inverse of B. * * @param layout The matrix layout. * * @param n The number of rows of the matrix A and B. * * @param m The number of columns of the matrix A. 0 <= M <= N. * * @param p The number of columns of the matrix B. P >= N-M. * * @param A The matrix of dimension (LDA, M). * On exit, the upper triangular part of the matrix A contains * the M-by-M upper triangular matrix R. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param B On entry, the N-by-P matrix B. * On exit, if N <= P, the upper triangle of the subarray * B(1:N,P-N+1:P) contains the N-by-N upper triangular matrix T; * if N > P, the elements on and above the (N-P)th subdiagonal * contain the N-by-P upper trapezoidal matrix T. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @param d Dimension (N). * On entry, D is the left hand side of the GLM equation. * On exit, D is destroyed. * * @param x Dimension (M). * On exit, X and Y are the solutions of the GLM problem. * * @param y Dimension (P). * On exit, X and Y are the solutions of the GLM problem. * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * = 1: the upper triangular factor R associated with A in the * generalized QR factorization of the pair (A, B) is * singular, so that rank(A) < M; the least squares * solution could not be computed. * = 2: the bottom (N-M) by (N-M) part of the upper trapezoidal * factor T associated with B in the generalized QR * factorization of the pair (A, B) is singular, so that * rank( A B ) < N; the least squares solution could not * be computed. */ int ggglm(Layout layout, int n, int m, int p, float[] A, int lda, float[] B, int ldb, float[] d, float[] x, float[] y); /** * Solves a general Gauss-Markov linear model (GLM) problem. *

     *     minimize || y ||_2   subject to   d = A*x + B*y
     *         x
     * 
* where A is an N-by-M matrix, B is an N-by-P matrix, and d is a * given N-vector. It is assumed that M <= N <= M+P, and *

     *     rank(A) = M    and    rank( A B ) = N
     * 
* * Under these assumptions, the constrained equation is always * consistent, and there is a unique solution x and a minimal 2-norm * solution y, which is obtained using a generalized QR factorization * of the matrices (A, B) given by *

     *     A = Q*(R),   B = Q*T*Z
     *           (0)
     * 
* * In particular, if matrix B is square nonsingular, then the problem * GLM is equivalent to the following weighted linear least squares * problem * *

     *     minimize || inv(B)*(d-A*x) ||_2
     *         x
     * 
* where inv(B) denotes the inverse of B. * * @param layout The matrix layout. * * @param n The number of rows of the matrix A and B. * * @param m The number of columns of the matrix A. 0 <= M <= N. * * @param p The number of columns of the matrix B. P >= N-M. * * @param A The matrix of dimension (LDA, M). * On exit, the upper triangular part of the matrix A contains * the M-by-M upper triangular matrix R. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param B On entry, the N-by-P matrix B. * On exit, if N <= P, the upper triangle of the subarray * B(1:N,P-N+1:P) contains the N-by-N upper triangular matrix T; * if N > P, the elements on and above the (N-P)th subdiagonal * contain the N-by-P upper trapezoidal matrix T. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @param d Dimension (N). * On entry, D is the left hand side of the GLM equation. * On exit, D is destroyed. * * @param x Dimension (M). * On exit, X and Y are the solutions of the GLM problem. * * @param y Dimension (P). * On exit, X and Y are the solutions of the GLM problem. * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * = 1: the upper triangular factor R associated with A in the * generalized QR factorization of the pair (A, B) is * singular, so that rank(A) < M; the least squares * solution could not be computed. * = 2: the bottom (N-M) by (N-M) part of the upper trapezoidal * factor T associated with B in the generalized QR * factorization of the pair (A, B) is singular, so that * rank( A B ) < N; the least squares solution could not * be computed. */ int ggglm(Layout layout, int n, int m, int p, FloatBuffer A, int lda, FloatBuffer B, int ldb, FloatBuffer d, FloatBuffer x, FloatBuffer y); /** * Computes the eigenvalues and, optionally, the left and/or right * eigenvectors. The computed eigenvectors are normalized to have * Euclidean norm equal to 1 and largest component real. * * @param layout The matrix layout. * * @param jobvl The option for computing all or part of the matrix U. * * @param jobvr The option for computing all or part of the matrix VT. * * @param n The dimension of the matrix A. * * @param A The matrix of dimension (LDA, N). * On entry, the N-by-N matrix A. * On exit, A has been overwritten. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param wr Dimension N. WR and WI contain the real and imaginary parts, * respectively, of the computed eigenvalues. Complex * conjugate pairs of eigenvalues appear consecutively * with the eigenvalue having the positive imaginary part first. * * @param wi Dimension N. WR and WI contain the real and imaginary parts, * respectively, of the computed eigenvalues. Complex * conjugate pairs of eigenvalues appear consecutively * with the eigenvalue having the positive imaginary part first. * * @param Vl Left eigenvectors. If JOBVL = 'N', Vl is not referenced. * * @param ldvl The leading dimension of the matrix Vl. * * @param Vr Right eigenvectors. If JOBVR = 'N', Vr is not referenced. * * @param ldvr The leading dimension of the matrix Vr. * * @return INFO flag. * = 0: successful exit. * < 0: if INFO = -i, the i-th argument had an illegal value. * > 0: if INFO = i, the QR algorithm failed to compute all the * eigenvalues, and no eigenvectors have been computed; * elements i+1:N of WR and WI contain eigenvalues which * have converged. */ int geev(Layout layout, EVDJob jobvl, EVDJob jobvr, int n, double[] A, int lda, double[] wr, double[] wi, double[] Vl, int ldvl, double[] Vr, int ldvr); /** * Computes the eigenvalues and, optionally, the left and/or right * eigenvectors. The computed eigenvectors are normalized to have * Euclidean norm equal to 1 and largest component real. * * @param layout The matrix layout. * * @param jobvl The option for computing all or part of the matrix U. * * @param jobvr The option for computing all or part of the matrix VT. * * @param n The dimension of the matrix A. * * @param A The matrix of dimension (LDA, N). * On entry, the N-by-N matrix A. * On exit, A has been overwritten. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param wr Dimension N. WR and WI contain the real and imaginary parts, * respectively, of the computed eigenvalues. Complex * conjugate pairs of eigenvalues appear consecutively * with the eigenvalue having the positive imaginary part first. * * @param wi Dimension N. WR and WI contain the real and imaginary parts, * respectively, of the computed eigenvalues. Complex * conjugate pairs of eigenvalues appear consecutively * with the eigenvalue having the positive imaginary part first. * * @param Vl Left eigenvectors. If JOBVL = 'N', Vl is not referenced. * * @param ldvl The leading dimension of the matrix Vl. * * @param Vr Right eigenvectors. If JOBVR = 'N', Vr is not referenced. * * @param ldvr The leading dimension of the matrix Vr. * * @return INFO flag. * = 0: successful exit. * < 0: if INFO = -i, the i-th argument had an illegal value. * > 0: if INFO = i, the QR algorithm failed to compute all the * eigenvalues, and no eigenvectors have been computed; * elements i+1:N of WR and WI contain eigenvalues which * have converged. */ int geev(Layout layout, EVDJob jobvl, EVDJob jobvr, int n, DoubleBuffer A, int lda, DoubleBuffer wr, DoubleBuffer wi, DoubleBuffer Vl, int ldvl, DoubleBuffer Vr, int ldvr); /** * Computes the eigenvalues and, optionally, the left and/or right * eigenvectors. The computed eigenvectors are normalized to have * Euclidean norm equal to 1 and largest component real. * * @param layout The matrix layout. * * @param jobvl The option for computing all or part of the matrix U. * * @param jobvr The option for computing all or part of the matrix VT. * * @param n The dimension of the matrix A. * * @param A The matrix of dimension (LDA, N). * On entry, the N-by-N matrix A. * On exit, A has been overwritten. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param wr Dimension N. WR and WI contain the real and imaginary parts, * respectively, of the computed eigenvalues. Complex * conjugate pairs of eigenvalues appear consecutively * with the eigenvalue having the positive imaginary part first. * * @param wi Dimension N. WR and WI contain the real and imaginary parts, * respectively, of the computed eigenvalues. Complex * conjugate pairs of eigenvalues appear consecutively * with the eigenvalue having the positive imaginary part first. * * @param Vl Left eigenvectors. If JOBVL = 'N', Vl is not referenced. * * @param ldvl The leading dimension of the matrix Vl. * * @param Vr Right eigenvectors. If JOBVR = 'N', Vr is not referenced. * * @param ldvr The leading dimension of the matrix Vr. * * @return INFO flag. * = 0: successful exit. * < 0: if INFO = -i, the i-th argument had an illegal value. * > 0: if INFO = i, the QR algorithm failed to compute all the * eigenvalues, and no eigenvectors have been computed; * elements i+1:N of WR and WI contain eigenvalues which * have converged. */ int geev(Layout layout, EVDJob jobvl, EVDJob jobvr, int n, float[] A, int lda, float[] wr, float[] wi, float[] Vl, int ldvl, float[] Vr, int ldvr); /** * Computes the eigenvalues and, optionally, the left and/or right * eigenvectors. The computed eigenvectors are normalized to have * Euclidean norm equal to 1 and largest component real. * * @param layout The matrix layout. * * @param jobvl The option for computing all or part of the matrix U. * * @param jobvr The option for computing all or part of the matrix VT. * * @param n The dimension of the matrix A. * * @param A The matrix of dimension (LDA, N). * On entry, the N-by-N matrix A. * On exit, A has been overwritten. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param wr Dimension N. WR and WI contain the real and imaginary parts, * respectively, of the computed eigenvalues. Complex * conjugate pairs of eigenvalues appear consecutively * with the eigenvalue having the positive imaginary part first. * * @param wi Dimension N. WR and WI contain the real and imaginary parts, * respectively, of the computed eigenvalues. Complex * conjugate pairs of eigenvalues appear consecutively * with the eigenvalue having the positive imaginary part first. * * @param Vl Left eigenvectors. If JOBVL = 'N', Vl is not referenced. * * @param ldvl The leading dimension of the matrix Vl. * * @param Vr Right eigenvectors. If JOBVR = 'N', Vr is not referenced. * * @param ldvr The leading dimension of the matrix Vr. * * @return INFO flag. * = 0: successful exit. * < 0: if INFO = -i, the i-th argument had an illegal value. * > 0: if INFO = i, the QR algorithm failed to compute all the * eigenvalues, and no eigenvectors have been computed; * elements i+1:N of WR and WI contain eigenvalues which * have converged. */ int geev(Layout layout, EVDJob jobvl, EVDJob jobvr, int n, FloatBuffer A, int lda, FloatBuffer wr, FloatBuffer wi, FloatBuffer Vl, int ldvl, FloatBuffer Vr, int ldvr); /** * Computes the eigenvalues and, optionally, the left and/or right * eigenvectors of a real symmetric matrix A. * * @param layout The matrix layout. * * @param jobz The option if computing eigen vectors. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The dimension of the matrix A. * * @param A The matrix of dimension (LDA, N). * On entry, the N-by-N matrix A. * On exit, A has been overwritten. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param w Dimension N. If INFO = 0, the eigenvalues in ascending order. * * @return INFO flag. * = 0: successful exit. * < 0: if INFO = -i, the i-th argument had an illegal value. * > 0: if INFO = i, the algorithm failed to converge; i * off-diagonal elements of an intermediate tridiagonal * form did not converge to zero. */ int syev(Layout layout, EVDJob jobz, UPLO uplo, int n, double[] A, int lda, double[] w); /** * Computes the eigenvalues and, optionally, the left and/or right * eigenvectors of a real symmetric matrix A. * * @param layout The matrix layout. * * @param jobz The option if computing eigen vectors. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The dimension of the matrix A. * * @param A The matrix of dimension (LDA, N). * On entry, the N-by-N matrix A. * On exit, A has been overwritten. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param w Dimension N. If INFO = 0, the eigenvalues in ascending order. * * @return INFO flag. * = 0: successful exit. * < 0: if INFO = -i, the i-th argument had an illegal value. * > 0: if INFO = i, the algorithm failed to converge; i * off-diagonal elements of an intermediate tridiagonal * form did not converge to zero. */ int syev(Layout layout, EVDJob jobz, UPLO uplo, int n, DoubleBuffer A, int lda, DoubleBuffer w); /** * Computes the eigenvalues and, optionally, the left and/or right * eigenvectors of a real symmetric matrix A. * * @param layout The matrix layout. * * @param jobz The option if computing eigen vectors. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The dimension of the matrix A. * * @param A The matrix of dimension (LDA, N). * On entry, the N-by-N matrix A. * On exit, A has been overwritten. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param w Dimension N. If INFO = 0, the eigenvalues in ascending order. * * @return INFO flag. * = 0: successful exit. * < 0: if INFO = -i, the i-th argument had an illegal value. * > 0: if INFO = i, the algorithm failed to converge; i * off-diagonal elements of an intermediate tridiagonal * form did not converge to zero. */ int syev(Layout layout, EVDJob jobz, UPLO uplo, int n, float[] A, int lda, float[] w); /** * Computes the eigenvalues and, optionally, the left and/or right * eigenvectors of a real symmetric matrix A. * * @param layout The matrix layout. * * @param jobz The option if computing eigen vectors. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The dimension of the matrix A. * * @param A The matrix of dimension (LDA, N). * On entry, the N-by-N matrix A. * On exit, A has been overwritten. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param w Dimension N. If INFO = 0, the eigenvalues in ascending order. * * @return INFO flag. * = 0: successful exit. * < 0: if INFO = -i, the i-th argument had an illegal value. * > 0: if INFO = i, the algorithm failed to converge; i * off-diagonal elements of an intermediate tridiagonal * form did not converge to zero. */ int syev(Layout layout, EVDJob jobz, UPLO uplo, int n, FloatBuffer A, int lda, FloatBuffer w); /** * Computes the eigenvalues and, optionally, the left and/or right * eigenvectors of a real symmetric matrix A. If eigenvectors are * desired, it uses a divide and conquer algorithm. * * @param layout The matrix layout. * * @param jobz The option if computing eigen vectors. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The dimension of the matrix A. * * @param A The matrix of dimension (LDA, N). * On entry, the N-by-N matrix A. * On exit, A has been overwritten. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param w Dimension N. If INFO = 0, the eigenvalues in ascending order. * * @return INFO flag. * = 0: successful exit. * < 0: if INFO = -i, the i-th argument had an illegal value. * > 0: if INFO = i, the algorithm failed to converge; i * off-diagonal elements of an intermediate tridiagonal * form did not converge to zero. */ int syevd(Layout layout, EVDJob jobz, UPLO uplo, int n, double[] A, int lda, double[] w); /** * Computes the eigenvalues and, optionally, the left and/or right * eigenvectors of a real symmetric matrix A. If eigenvectors are * desired, it uses a divide and conquer algorithm. * * @param layout The matrix layout. * * @param jobz The option if computing eigen vectors. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The dimension of the matrix A. * * @param A The matrix of dimension (LDA, N). * On entry, the N-by-N matrix A. * On exit, A has been overwritten. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param w Dimension N. If INFO = 0, the eigenvalues in ascending order. * * @return INFO flag. * = 0: successful exit. * < 0: if INFO = -i, the i-th argument had an illegal value. * > 0: if INFO = i, the algorithm failed to converge; i * off-diagonal elements of an intermediate tridiagonal * form did not converge to zero. */ int syevd(Layout layout, EVDJob jobz, UPLO uplo, int n, DoubleBuffer A, int lda, DoubleBuffer w); /** * Computes the eigenvalues and, optionally, the left and/or right * eigenvectors of a real symmetric matrix A. If eigenvectors are * desired, it uses a divide and conquer algorithm. * * @param layout The matrix layout. * * @param jobz The option if computing eigen vectors. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The dimension of the matrix A. * * @param A The matrix of dimension (LDA, N). * On entry, the N-by-N matrix A. * On exit, A has been overwritten. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param w Dimension N. If INFO = 0, the eigenvalues in ascending order. * * @return INFO flag. * = 0: successful exit. * < 0: if INFO = -i, the i-th argument had an illegal value. * > 0: if INFO = i, the algorithm failed to converge; i * off-diagonal elements of an intermediate tridiagonal * form did not converge to zero. */ int syevd(Layout layout, EVDJob jobz, UPLO uplo, int n, float[] A, int lda, float[] w); /** * Computes the eigenvalues and, optionally, the left and/or right * eigenvectors of a real symmetric matrix A. If eigenvectors are * desired, it uses a divide and conquer algorithm. * * @param layout The matrix layout. * * @param jobz The option if computing eigen vectors. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The dimension of the matrix A. * * @param A The matrix of dimension (LDA, N). * On entry, the N-by-N matrix A. * On exit, A has been overwritten. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param w Dimension N. If INFO = 0, the eigenvalues in ascending order. * * @return INFO flag. * = 0: successful exit. * < 0: if INFO = -i, the i-th argument had an illegal value. * > 0: if INFO = i, the algorithm failed to converge; i * off-diagonal elements of an intermediate tridiagonal * form did not converge to zero. */ int syevd(Layout layout, EVDJob jobz, UPLO uplo, int n, FloatBuffer A, int lda, FloatBuffer w); /** * Computes the eigenvalues and, optionally, the left and/or right * eigenvectors of a real symmetric matrix A. Eigenvalues and * eigenvectors can be selected by specifying either a range of * values or a range of indices for the desired eigenvalues. * * SYEVR first reduces the matrix A to tridiagonal form T with a call * to DSYTRD. Then, whenever possible, DSYEVR calls DSTEMR to compute * the eigenspectrum using Relatively Robust Representations. DSTEMR * computes eigenvalues by the dqds algorithm, while orthogonal * eigenvectors are computed from various "good" L D L^T representations * (also known as Relatively Robust Representations). Gram-Schmidt * orthogonalization is avoided as far as possible. More specifically, * the various steps of the algorithm are as follows. * * The desired accuracy of the output can be specified by the input * parameter ABSTOL. * * @param layout The matrix layout. * * @param jobz The option if computing eigen vectors. * * @param range The range of eigenvalues to compute. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The dimension of the matrix A. * * @param A The matrix of dimension (LDA, N). * On entry, the N-by-N matrix A. * On exit, A has been overwritten. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param vl The lower bound of the interval to be searched for eigenvalues. * Not referenced if RANGE = 'A' or 'I'. * * @param vu The upper bound of the interval to be searched for eigenvalues. * Not referenced if RANGE = 'A' or 'I'. * * @param il The index of the smallest eigenvalue to be returned. * Not referenced if RANGE = 'A' or 'V'. * * @param iu The index of the largest eigenvalue to be returned. * Not referenced if RANGE = 'A' or 'V'. * * @param abstol The absolute error tolerance for the eigenvalues. * * @param m The total number of eigenvalues found. * * @param w The first M elements contain the selected eigenvalues in * ascending order. * * @param Z Dimension (LDZ, max(1,M)). * If JOBZ = 'V', then if INFO = 0, the first M columns of Z * contain the orthonormal eigenvectors of the matrix A * corresponding to the selected eigenvalues, with the i-th * column of Z holding the eigenvector associated with W(i). * If JOBZ = 'N', then Z is not referenced. * * @param ldz The leading dimension of the matrix Z. * * @param isuppz Dimension 2 * max(1,M). * The support of the eigenvectors in Z, i.e., the indices * indicating the nonzero elements in Z. The i-th eigenvector * is nonzero only in elements ISUPPZ( 2*i-1 ) through * ISUPPZ( 2*i ). This is an output of DSTEMR (tridiagonal * matrix). The support of the eigenvectors of A is typically * 1:N because of the orthogonal transformations applied by DORMTR. * Implemented only for RANGE = 'A' or 'I' and IU - IL = N - 1. * * @return INFO flag. * = 0: successful exit. * < 0: if INFO = -i, the i-th argument had an illegal value. * > 0: Internal error */ int syevr(Layout layout, EVDJob jobz, EigenRange range, UPLO uplo, int n, double[] A, int lda, double vl, double vu, int il, int iu, double abstol, int[] m, double[] w, double[] Z, int ldz, int[] isuppz); /** * Computes the eigenvalues and, optionally, the left and/or right * eigenvectors of a real symmetric matrix A. Eigenvalues and * eigenvectors can be selected by specifying either a range of * values or a range of indices for the desired eigenvalues. * * SYEVR first reduces the matrix A to tridiagonal form T with a call * to DSYTRD. Then, whenever possible, DSYEVR calls DSTEMR to compute * the eigenspectrum using Relatively Robust Representations. DSTEMR * computes eigenvalues by the dqds algorithm, while orthogonal * eigenvectors are computed from various "good" L D L^T representations * (also known as Relatively Robust Representations). Gram-Schmidt * orthogonalization is avoided as far as possible. More specifically, * the various steps of the algorithm are as follows. * * The desired accuracy of the output can be specified by the input * parameter ABSTOL. * * @param layout The matrix layout. * * @param jobz The option if computing eigen vectors. * * @param range The range of eigenvalues to compute. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The dimension of the matrix A. * * @param A The matrix of dimension (LDA, N). * On entry, the N-by-N matrix A. * On exit, A has been overwritten. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param vl The lower bound of the interval to be searched for eigenvalues. * Not referenced if RANGE = 'A' or 'I'. * * @param vu The upper bound of the interval to be searched for eigenvalues. * Not referenced if RANGE = 'A' or 'I'. * * @param il The index of the smallest eigenvalue to be returned. * Not referenced if RANGE = 'A' or 'V'. * * @param iu The index of the largest eigenvalue to be returned. * Not referenced if RANGE = 'A' or 'V'. * * @param abstol The absolute error tolerance for the eigenvalues. * * @param m The total number of eigenvalues found. * * @param w The first M elements contain the selected eigenvalues in * ascending order. * * @param Z Dimension (LDZ, max(1,M)). * If JOBZ = 'V', then if INFO = 0, the first M columns of Z * contain the orthonormal eigenvectors of the matrix A * corresponding to the selected eigenvalues, with the i-th * column of Z holding the eigenvector associated with W(i). * If JOBZ = 'N', then Z is not referenced. * * @param ldz The leading dimension of the matrix Z. * * @param isuppz Dimension 2 * max(1,M). * The support of the eigenvectors in Z, i.e., the indices * indicating the nonzero elements in Z. The i-th eigenvector * is nonzero only in elements ISUPPZ( 2*i-1 ) through * ISUPPZ( 2*i ). This is an output of DSTEMR (tridiagonal * matrix). The support of the eigenvectors of A is typically * 1:N because of the orthogonal transformations applied by DORMTR. * Implemented only for RANGE = 'A' or 'I' and IU - IL = N - 1. * * @return INFO flag. * = 0: successful exit. * < 0: if INFO = -i, the i-th argument had an illegal value. * > 0: Internal error */ int syevr(Layout layout, EVDJob jobz, EigenRange range, UPLO uplo, int n, DoubleBuffer A, int lda, double vl, double vu, int il, int iu, double abstol, IntBuffer m, DoubleBuffer w, DoubleBuffer Z, int ldz, IntBuffer isuppz); /** * Computes the eigenvalues and, optionally, the left and/or right * eigenvectors of a real symmetric matrix A. Eigenvalues and * eigenvectors can be selected by specifying either a range of * values or a range of indices for the desired eigenvalues. * * SYEVR first reduces the matrix A to tridiagonal form T with a call * to DSYTRD. Then, whenever possible, DSYEVR calls DSTEMR to compute * the eigenspectrum using Relatively Robust Representations. DSTEMR * computes eigenvalues by the dqds algorithm, while orthogonal * eigenvectors are computed from various "good" L D L^T representations * (also known as Relatively Robust Representations). Gram-Schmidt * orthogonalization is avoided as far as possible. More specifically, * the various steps of the algorithm are as follows. * * The desired accuracy of the output can be specified by the input * parameter ABSTOL. * * @param layout The matrix layout. * * @param jobz The option if computing eigen vectors. * * @param range The range of eigenvalues to compute. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The dimension of the matrix A. * * @param A The matrix of dimension (LDA, N). * On entry, the N-by-N matrix A. * On exit, A has been overwritten. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param vl The lower bound of the interval to be searched for eigenvalues. * Not referenced if RANGE = 'A' or 'I'. * * @param vu The upper bound of the interval to be searched for eigenvalues. * Not referenced if RANGE = 'A' or 'I'. * * @param il The index of the smallest eigenvalue to be returned. * Not referenced if RANGE = 'A' or 'V'. * * @param iu The index of the largest eigenvalue to be returned. * Not referenced if RANGE = 'A' or 'V'. * * @param abstol The absolute error tolerance for the eigenvalues. * * @param m The total number of eigenvalues found. * * @param w The first M elements contain the selected eigenvalues in * ascending order. * * @param Z Dimension (LDZ, max(1,M)). * If JOBZ = 'V', then if INFO = 0, the first M columns of Z * contain the orthonormal eigenvectors of the matrix A * corresponding to the selected eigenvalues, with the i-th * column of Z holding the eigenvector associated with W(i). * If JOBZ = 'N', then Z is not referenced. * * @param ldz The leading dimension of the matrix Z. * * @param isuppz Dimension 2 * max(1,M). * The support of the eigenvectors in Z, i.e., the indices * indicating the nonzero elements in Z. The i-th eigenvector * is nonzero only in elements ISUPPZ( 2*i-1 ) through * ISUPPZ( 2*i ). This is an output of DSTEMR (tridiagonal * matrix). The support of the eigenvectors of A is typically * 1:N because of the orthogonal transformations applied by DORMTR. * Implemented only for RANGE = 'A' or 'I' and IU - IL = N - 1. * * @return INFO flag. * = 0: successful exit. * < 0: if INFO = -i, the i-th argument had an illegal value. * > 0: Internal error */ int syevr(Layout layout, EVDJob jobz, EigenRange range, UPLO uplo, int n, float[] A, int lda, float vl, float vu, int il, int iu, float abstol, int[] m, float[] w, float[] Z, int ldz, int[] isuppz); /** * Computes the eigenvalues and, optionally, the left and/or right * eigenvectors of a real symmetric matrix A. Eigenvalues and * eigenvectors can be selected by specifying either a range of * values or a range of indices for the desired eigenvalues. * * SYEVR first reduces the matrix A to tridiagonal form T with a call * to DSYTRD. Then, whenever possible, DSYEVR calls DSTEMR to compute * the eigenspectrum using Relatively Robust Representations. DSTEMR * computes eigenvalues by the dqds algorithm, while orthogonal * eigenvectors are computed from various "good" L D L^T representations * (also known as Relatively Robust Representations). Gram-Schmidt * orthogonalization is avoided as far as possible. More specifically, * the various steps of the algorithm are as follows. * * The desired accuracy of the output can be specified by the input * parameter ABSTOL. * * @param layout The matrix layout. * * @param jobz The option if computing eigen vectors. * * @param range The range of eigenvalues to compute. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The dimension of the matrix A. * * @param A The matrix of dimension (LDA, N). * On entry, the N-by-N matrix A. * On exit, A has been overwritten. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param vl The lower bound of the interval to be searched for eigenvalues. * Not referenced if RANGE = 'A' or 'I'. * * @param vu The upper bound of the interval to be searched for eigenvalues. * Not referenced if RANGE = 'A' or 'I'. * * @param il The index of the smallest eigenvalue to be returned. * Not referenced if RANGE = 'A' or 'V'. * * @param iu The index of the largest eigenvalue to be returned. * Not referenced if RANGE = 'A' or 'V'. * * @param abstol The absolute error tolerance for the eigenvalues. * * @param m The total number of eigenvalues found. * * @param w The first M elements contain the selected eigenvalues in * ascending order. * * @param Z Dimension (LDZ, max(1,M)). * If JOBZ = 'V', then if INFO = 0, the first M columns of Z * contain the orthonormal eigenvectors of the matrix A * corresponding to the selected eigenvalues, with the i-th * column of Z holding the eigenvector associated with W(i). * If JOBZ = 'N', then Z is not referenced. * * @param ldz The leading dimension of the matrix Z. * * @param isuppz Dimension 2 * max(1,M). * The support of the eigenvectors in Z, i.e., the indices * indicating the nonzero elements in Z. The i-th eigenvector * is nonzero only in elements ISUPPZ( 2*i-1 ) through * ISUPPZ( 2*i ). This is an output of DSTEMR (tridiagonal * matrix). The support of the eigenvectors of A is typically * 1:N because of the orthogonal transformations applied by DORMTR. * Implemented only for RANGE = 'A' or 'I' and IU - IL = N - 1. * * @return INFO flag. * = 0: successful exit. * < 0: if INFO = -i, the i-th argument had an illegal value. * > 0: Internal error */ int syevr(Layout layout, EVDJob jobz, EigenRange range, UPLO uplo, int n, FloatBuffer A, int lda, float vl, float vu, int il, int iu, float abstol, IntBuffer m, FloatBuffer w, FloatBuffer Z, int ldz, IntBuffer isuppz); /** * Computes the singular value decomposition (SVD) of a real * M-by-N matrix A, optionally computing the left and/or right singular * vectors. * * @param layout The matrix layout. * * @param jobu The option for computing all or part of the matrix U. * * @param jobvt The option for computing all or part of the matrix VT. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param A The matrix of dimension (LDA, N). * * If JOBU = 'O', A is overwritten with the first min(m,n) * columns of U (the left singular vectors, stored columnwise). * * If JOBVT = 'O',A is overwritten with the first min(m,n) * rows of VT (the right singular vectors, stored rowwise). * * If JOBU != 'O' and JOBVT != 'O', the contents of A * are destroyed. * * @param lda The leading dimension of the matrix A. LDA >= max(1,M). * * @param s The singular values of A, sorted so that S(i) >= S(i+1). * Dimension min(M,N). * * @param U If JOBU = 'N' or 'O', U is not referenced. * * @param ldu The leading dimension of the matrix U. * * @param VT If JOBVT = 'N' or 'O', VT is not referenced. * * @param ldvt The leading dimension of the matrix VT. * * @param superb The superdiagonal of the upper bidiagonal matrix B. * Dimension min(M,N)-1. * * @return INFO flag. * = 0: successful exit. * < 0: if INFO = -i, the i-th argument had an illegal value. * > 0: if DBDSQR did not converge, INFO specifies how many * superdiagonals of an intermediate bidiagonal form B * did not converge to zero. */ int gesvd(Layout layout, SVDJob jobu, SVDJob jobvt, int m, int n, double[] A, int lda, double[] s, double[] U, int ldu, double[] VT, int ldvt, double[] superb); /** * Computes the singular value decomposition (SVD) of a real * M-by-N matrix A, optionally computing the left and/or right singular * vectors. * * @param layout The matrix layout. * * @param jobu The option for computing all or part of the matrix U. * * @param jobvt The option for computing all or part of the matrix VT. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param A The matrix of dimension (LDA, N). * * If JOBU = 'O', A is overwritten with the first min(m,n) * columns of U (the left singular vectors, stored columnwise). * * If JOBVT = 'O',A is overwritten with the first min(m,n) * rows of VT (the right singular vectors, stored rowwise). * * If JOBU != 'O' and JOBVT != 'O', the contents of A * are destroyed. * * @param lda The leading dimension of the matrix A. LDA >= max(1,M). * * @param s The singular values of A, sorted so that S(i) >= S(i+1). * Dimension min(M,N). * * @param U If JOBU = 'N' or 'O', U is not referenced. * * @param ldu The leading dimension of the matrix U. * * @param VT If JOBVT = 'N' or 'O', VT is not referenced. * * @param ldvt The leading dimension of the matrix VT. * * @param superb The superdiagonal of the upper bidiagonal matrix B. * Dimension min(M,N)-1. * * @return INFO flag. * = 0: successful exit. * < 0: if INFO = -i, the i-th argument had an illegal value. * > 0: if DBDSQR did not converge, INFO specifies how many * superdiagonals of an intermediate bidiagonal form B * did not converge to zero. */ int gesvd(Layout layout, SVDJob jobu, SVDJob jobvt, int m, int n, DoubleBuffer A, int lda, DoubleBuffer s, DoubleBuffer U, int ldu, DoubleBuffer VT, int ldvt, DoubleBuffer superb); /** * Computes the singular value decomposition (SVD) of a real * M-by-N matrix A, optionally computing the left and/or right singular * vectors. * * @param layout The matrix layout. * * @param jobu The option for computing all or part of the matrix U. * * @param jobvt The option for computing all or part of the matrix VT. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param A The matrix of dimension (LDA, N). * * If JOBU = 'O', A is overwritten with the first min(m,n) * columns of U (the left singular vectors, stored columnwise). * * If JOBVT = 'O',A is overwritten with the first min(m,n) * rows of VT (the right singular vectors, stored rowwise). * * If JOBU != 'O' and JOBVT != 'O', the contents of A * are destroyed. * * @param lda The leading dimension of the matrix A. LDA >= max(1,M). * * @param s The singular values of A, sorted so that S(i) >= S(i+1). * Dimension min(M,N). * * @param U If JOBU = 'N' or 'O', U is not referenced. * * @param ldu The leading dimension of the matrix U. * * @param VT If JOBVT = 'N' or 'O', VT is not referenced. * * @param ldvt The leading dimension of the matrix VT. * * @param superb The superdiagonal of the upper bidiagonal matrix B. * Dimension min(M,N)-1. * * @return INFO flag. * = 0: successful exit. * < 0: if INFO = -i, the i-th argument had an illegal value. * > 0: if DBDSQR did not converge, INFO specifies how many * superdiagonals of an intermediate bidiagonal form B * did not converge to zero. */ int gesvd(Layout layout, SVDJob jobu, SVDJob jobvt, int m, int n, float[] A, int lda, float[] s, float[] U, int ldu, float[] VT, int ldvt, float[] superb); /** * Computes the singular value decomposition (SVD) of a real * M-by-N matrix A, optionally computing the left and/or right singular * vectors. * * @param layout The matrix layout. * * @param jobu The option for computing all or part of the matrix U. * * @param jobvt The option for computing all or part of the matrix VT. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param A The matrix of dimension (LDA, N). * * If JOBU = 'O', A is overwritten with the first min(m,n) * columns of U (the left singular vectors, stored columnwise). * * If JOBVT = 'O',A is overwritten with the first min(m,n) * rows of VT (the right singular vectors, stored rowwise). * * If JOBU != 'O' and JOBVT != 'O', the contents of A * are destroyed. * * @param lda The leading dimension of the matrix A. LDA >= max(1,M). * * @param s The singular values of A, sorted so that S(i) >= S(i+1). * Dimension min(M,N). * * @param U If JOBU = 'N' or 'O', U is not referenced. * * @param ldu The leading dimension of the matrix U. * * @param VT If JOBVT = 'N' or 'O', VT is not referenced. * * @param ldvt The leading dimension of the matrix VT. * * @param superb The superdiagonal of the upper bidiagonal matrix B. * Dimension min(M,N)-1. * * @return INFO flag. * = 0: successful exit. * < 0: if INFO = -i, the i-th argument had an illegal value. * > 0: if DBDSQR did not converge, INFO specifies how many * superdiagonals of an intermediate bidiagonal form B * did not converge to zero. */ int gesvd(Layout layout, SVDJob jobu, SVDJob jobvt, int m, int n, FloatBuffer A, int lda, FloatBuffer s, FloatBuffer U, int ldu, FloatBuffer VT, int ldvt, FloatBuffer superb); /** * Computes the singular value decomposition (SVD) of a real * M-by-N matrix A, optionally computing the left and/or right singular * vectors. If singular vectors are desired, it uses a * divide-and-conquer algorithm. * * @param layout The matrix layout. * * @param jobz The option for computing all or part of the matrix U. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param A The matrix of dimension (LDA, N). * * If JOBZ = 'O', A is overwritten with the first N columns * of U (the left singular vectors, stored columnwise) if M >= N; * A is overwritten with the first M rows of V**T (the right * singular vectors, stored rowwise) otherwise. * * If JOBZ != 'O', the contents of A are destroyed. * * @param lda The leading dimension of the matrix A. LDA >= max(1,M). * * @param s The singular values of A, sorted so that S(i) >= S(i+1). * Dimension min(M,N). * * @param U If JOBU = 'N' or 'O', U is not referenced. * * @param ldu The leading dimension of the matrix U. * * @param VT If JOBVT = 'N' or 'O', VT is not referenced. * * @param ldvt The leading dimension of the matrix VT. * * @return INFO flag. * = 0: successful exit. * < 0: if INFO = -i, the i-th argument had an illegal value. * > 0: DBDSDC did not converge, updating process failed. */ int gesdd(Layout layout, SVDJob jobz, int m, int n, double[] A, int lda, double[] s, double[] U, int ldu, double[] VT, int ldvt); /** * Computes the singular value decomposition (SVD) of a real * M-by-N matrix A, optionally computing the left and/or right singular * vectors. If singular vectors are desired, it uses a * divide-and-conquer algorithm. * * @param layout The matrix layout. * * @param jobz The option for computing all or part of the matrix U. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param A The matrix of dimension (LDA, N). * * If JOBZ = 'O', A is overwritten with the first N columns * of U (the left singular vectors, stored columnwise) if M >= N; * A is overwritten with the first M rows of V**T (the right * singular vectors, stored rowwise) otherwise. * * If JOBZ != 'O', the contents of A are destroyed. * * @param lda The leading dimension of the matrix A. LDA >= max(1,M). * * @param s The singular values of A, sorted so that S(i) >= S(i+1). * Dimension min(M,N). * * @param U If JOBU = 'N' or 'O', U is not referenced. * * @param ldu The leading dimension of the matrix U. * * @param VT If JOBVT = 'N' or 'O', VT is not referenced. * * @param ldvt The leading dimension of the matrix VT. * * @return INFO flag. * = 0: successful exit. * < 0: if INFO = -i, the i-th argument had an illegal value. * > 0: DBDSDC did not converge, updating process failed. */ int gesdd(Layout layout, SVDJob jobz, int m, int n, DoubleBuffer A, int lda, DoubleBuffer s, DoubleBuffer U, int ldu, DoubleBuffer VT, int ldvt); /** * Computes the singular value decomposition (SVD) of a real * M-by-N matrix A, optionally computing the left and/or right singular * vectors. If singular vectors are desired, it uses a * divide-and-conquer algorithm. * * @param layout The matrix layout. * * @param jobz The option for computing all or part of the matrix U. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param A The matrix of dimension (LDA, N). * * If JOBZ = 'O', A is overwritten with the first N columns * of U (the left singular vectors, stored columnwise) if M >= N; * A is overwritten with the first M rows of V**T (the right * singular vectors, stored rowwise) otherwise. * * If JOBZ != 'O', the contents of A are destroyed. * * @param lda The leading dimension of the matrix A. LDA >= max(1,M). * * @param s The singular values of A, sorted so that S(i) >= S(i+1). * Dimension min(M,N). * * @param U If JOBU = 'N' or 'O', U is not referenced. * * @param ldu The leading dimension of the matrix U. * * @param VT If JOBVT = 'N' or 'O', VT is not referenced. * * @param ldvt The leading dimension of the matrix VT. * * @return INFO flag. * = 0: successful exit. * < 0: if INFO = -i, the i-th argument had an illegal value. * > 0: DBDSDC did not converge, updating process failed. */ int gesdd(Layout layout, SVDJob jobz, int m, int n, float[] A, int lda, float[] s, float[] U, int ldu, float[] VT, int ldvt); /** * Computes the singular value decomposition (SVD) of a real * M-by-N matrix A, optionally computing the left and/or right singular * vectors. If singular vectors are desired, it uses a * divide-and-conquer algorithm. * * @param layout The matrix layout. * * @param jobz The option for computing all or part of the matrix U. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param A The matrix of dimension (LDA, N). * * If JOBZ = 'O', A is overwritten with the first N columns * of U (the left singular vectors, stored columnwise) if M >= N; * A is overwritten with the first M rows of V**T (the right * singular vectors, stored rowwise) otherwise. * * If JOBZ != 'O', the contents of A are destroyed. * * @param lda The leading dimension of the matrix A. LDA >= max(1,M). * * @param s The singular values of A, sorted so that S(i) >= S(i+1). * Dimension min(M,N). * * @param U If JOBU = 'N' or 'O', U is not referenced. * * @param ldu The leading dimension of the matrix U. * * @param VT If JOBVT = 'N' or 'O', VT is not referenced. * * @param ldvt The leading dimension of the matrix VT. * * @return INFO flag. * = 0: successful exit. * < 0: if INFO = -i, the i-th argument had an illegal value. * > 0: DBDSDC did not converge, updating process failed. */ int gesdd(Layout layout, SVDJob jobz, int m, int n, FloatBuffer A, int lda, FloatBuffer s, FloatBuffer U, int ldu, FloatBuffer VT, int ldvt); /** * Computes an LU factorization of a general M-by-N matrix A * using partial pivoting with row interchanges. * * @param layout The matrix layout. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param A The matrix of dimension (LDA, N). * On exit, the factors L and U from the factorization * A = P*L*U; the unit diagonal elements of L are not stored. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param ipiv The pivot indices; for 1 <= i <= min(M,N), row i of the * matrix was interchanged with row IPIV(i). Dimension min(M,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, U(i,i) is exactly zero. The factorization * has been completed, but the factor U is exactly * singular, and division by zero will occur if it is used * to solve a system of equations. */ int getrf(Layout layout, int m, int n, double[] A, int lda, int[] ipiv); /** * Computes an LU factorization of a general M-by-N matrix A * using partial pivoting with row interchanges. * * @param layout The matrix layout. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param A The matrix of dimension (LDA, N). * On exit, the factors L and U from the factorization * A = P*L*U; the unit diagonal elements of L are not stored. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param ipiv The pivot indices; for 1 <= i <= min(M,N), row i of the * matrix was interchanged with row IPIV(i). Dimension min(M,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, U(i,i) is exactly zero. The factorization * has been completed, but the factor U is exactly * singular, and division by zero will occur if it is used * to solve a system of equations. */ int getrf(Layout layout, int m, int n, DoubleBuffer A, int lda, IntBuffer ipiv); /** * Computes an LU factorization of a general M-by-N matrix A * using partial pivoting with row interchanges. * * @param layout The matrix layout. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param A The matrix of dimension (LDA, N). * On exit, the factors L and U from the factorization * A = P*L*U; the unit diagonal elements of L are not stored. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param ipiv The pivot indices; for 1 <= i <= min(M,N), row i of the * matrix was interchanged with row IPIV(i). Dimension min(M,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, U(i,i) is exactly zero. The factorization * has been completed, but the factor U is exactly * singular, and division by zero will occur if it is used * to solve a system of equations. */ int getrf(Layout layout, int m, int n, float[] A, int lda, int[] ipiv); /** * Computes an LU factorization of a general M-by-N matrix A * using partial pivoting with row interchanges. * * @param layout The matrix layout. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param A The matrix of dimension (LDA, N). * On exit, the factors L and U from the factorization * A = P*L*U; the unit diagonal elements of L are not stored. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param ipiv The pivot indices; for 1 <= i <= min(M,N), row i of the * matrix was interchanged with row IPIV(i). Dimension min(M,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, U(i,i) is exactly zero. The factorization * has been completed, but the factor U is exactly * singular, and division by zero will occur if it is used * to solve a system of equations. */ int getrf(Layout layout, int m, int n, FloatBuffer A, int lda, IntBuffer ipiv); /** * Computes an LU factorization of a general M-by-N matrix A * using partial pivoting with row interchanges. This is the * recursive version of the algorithm. * * @param layout The matrix layout. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param A The matrix of dimension (LDA, N). * On exit, the factors L and U from the factorization * A = P*L*U; the unit diagonal elements of L are not stored. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param ipiv The pivot indices; for 1 <= i <= min(M,N), row i of the * matrix was interchanged with row IPIV(i). Dimension min(M,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, U(i,i) is exactly zero. The factorization * has been completed, but the factor U is exactly * singular, and division by zero will occur if it is used * to solve a system of equations. */ int getrf2(Layout layout, int m, int n, double[] A, int lda, int[] ipiv); /** * Computes an LU factorization of a general M-by-N matrix A * using partial pivoting with row interchanges. This is the * recursive version of the algorithm. * * @param layout The matrix layout. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param A The matrix of dimension (LDA, N). * On exit, the factors L and U from the factorization * A = P*L*U; the unit diagonal elements of L are not stored. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param ipiv The pivot indices; for 1 <= i <= min(M,N), row i of the * matrix was interchanged with row IPIV(i). Dimension min(M,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, U(i,i) is exactly zero. The factorization * has been completed, but the factor U is exactly * singular, and division by zero will occur if it is used * to solve a system of equations. */ int getrf2(Layout layout, int m, int n, DoubleBuffer A, int lda, IntBuffer ipiv); /** * Computes an LU factorization of a general M-by-N matrix A * using partial pivoting with row interchanges. This is the * recursive version of the algorithm. * * @param layout The matrix layout. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param A The matrix of dimension (LDA, N). * On exit, the factors L and U from the factorization * A = P*L*U; the unit diagonal elements of L are not stored. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param ipiv The pivot indices; for 1 <= i <= min(M,N), row i of the * matrix was interchanged with row IPIV(i). Dimension min(M,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, U(i,i) is exactly zero. The factorization * has been completed, but the factor U is exactly * singular, and division by zero will occur if it is used * to solve a system of equations. */ int getrf2(Layout layout, int m, int n, float[] A, int lda, int[] ipiv); /** * Computes an LU factorization of a general M-by-N matrix A * using partial pivoting with row interchanges. This is the * recursive version of the algorithm. * * @param layout The matrix layout. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param A The matrix of dimension (LDA, N). * On exit, the factors L and U from the factorization * A = P*L*U; the unit diagonal elements of L are not stored. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param ipiv The pivot indices; for 1 <= i <= min(M,N), row i of the * matrix was interchanged with row IPIV(i). Dimension min(M,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, U(i,i) is exactly zero. The factorization * has been completed, but the factor U is exactly * singular, and division by zero will occur if it is used * to solve a system of equations. */ int getrf2(Layout layout, int m, int n, FloatBuffer A, int lda, IntBuffer ipiv); /** * Computes an LU factorization of a band matrix A * using partial pivoting with row interchanges. * * @param layout The matrix layout. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param kl The number of subdiagonal elements of band matrix. * * @param ku The number of superdiagonal elements of band matrix. * * @param AB The matrix of dimension (LDA, N). * On exit, the factors L and U from the factorization * A = P*L*U; the unit diagonal elements of L are not stored. * * @param ldab The leading dimension of the matrix A. LDA >= max(1,N). * * @param ipiv The pivot indices; for 1 <= i <= min(M,N), row i of the * matrix was interchanged with row IPIV(i). Dimension min(M,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, U(i,i) is exactly zero. The factorization * has been completed, but the factor U is exactly * singular, and division by zero will occur if it is used * to solve a system of equations. */ int gbtrf(Layout layout, int m, int n, int kl, int ku, double[] AB, int ldab, int[] ipiv); /** * Computes an LU factorization of a band matrix A * using partial pivoting with row interchanges. * * @param layout The matrix layout. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param kl The number of subdiagonal elements of band matrix. * * @param ku The number of superdiagonal elements of band matrix. * * @param AB The matrix of dimension (LDA, N). * On exit, the factors L and U from the factorization * A = P*L*U; the unit diagonal elements of L are not stored. * * @param ldab The leading dimension of the matrix A. LDA >= max(1,N). * * @param ipiv The pivot indices; for 1 <= i <= min(M,N), row i of the * matrix was interchanged with row IPIV(i). Dimension min(M,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, U(i,i) is exactly zero. The factorization * has been completed, but the factor U is exactly * singular, and division by zero will occur if it is used * to solve a system of equations. */ int gbtrf(Layout layout, int m, int n, int kl, int ku, DoubleBuffer AB, int ldab, IntBuffer ipiv); /** * Computes an LU factorization of a band matrix A * using partial pivoting with row interchanges. * * @param layout The matrix layout. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param kl The number of subdiagonal elements of band matrix. * * @param ku The number of superdiagonal elements of band matrix. * * @param AB The matrix of dimension (LDA, N). * On exit, the factors L and U from the factorization * A = P*L*U; the unit diagonal elements of L are not stored. * * @param ldab The leading dimension of the matrix A. LDA >= max(1,N). * * @param ipiv The pivot indices; for 1 <= i <= min(M,N), row i of the * matrix was interchanged with row IPIV(i). Dimension min(M,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, U(i,i) is exactly zero. The factorization * has been completed, but the factor U is exactly * singular, and division by zero will occur if it is used * to solve a system of equations. */ int gbtrf(Layout layout, int m, int n, int kl, int ku, float[] AB, int ldab, int[] ipiv); /** * Computes an LU factorization of a band matrix A * using partial pivoting with row interchanges. * * @param layout The matrix layout. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param kl The number of subdiagonal elements of band matrix. * * @param ku The number of superdiagonal elements of band matrix. * * @param AB The matrix of dimension (LDA, N). * On exit, the factors L and U from the factorization * A = P*L*U; the unit diagonal elements of L are not stored. * * @param ldab The leading dimension of the matrix A. LDA >= max(1,N). * * @param ipiv The pivot indices; for 1 <= i <= min(M,N), row i of the * matrix was interchanged with row IPIV(i). Dimension min(M,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, U(i,i) is exactly zero. The factorization * has been completed, but the factor U is exactly * singular, and division by zero will occur if it is used * to solve a system of equations. */ int gbtrf(Layout layout, int m, int n, int kl, int ku, FloatBuffer AB, int ldab, IntBuffer ipiv); /** * Computes the Bunch–Kaufman factorization of a symmetric packed matrix A. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The dimension of the matrix A. * * @param AP The packed matrix. * * @param ipiv The pivot indices; for 1 <= i <= min(M,N), row i of the * matrix was interchanged with row IPIV(i). Dimension min(M,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, D(i,i) is exactly zero. The factorization * has been completed, but the block diagonal matrix D is * exactly singular, and division by zero will occur if it * is used to solve a system of equations. */ int sptrf(Layout layout, UPLO uplo, int n, double[] AP, int[] ipiv); /** * Computes the Bunch–Kaufman factorization of a symmetric packed matrix A. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The dimension of the matrix A. * * @param AP The packed matrix. * * @param ipiv The pivot indices; for 1 <= i <= min(M,N), row i of the * matrix was interchanged with row IPIV(i). Dimension min(M,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, D(i,i) is exactly zero. The factorization * has been completed, but the block diagonal matrix D is * exactly singular, and division by zero will occur if it * is used to solve a system of equations. */ int sptrf(Layout layout, UPLO uplo, int n, DoubleBuffer AP, IntBuffer ipiv); /** * Computes the Bunch–Kaufman factorization of a symmetric packed matrix A. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The dimension of the matrix A. * * @param AP The packed matrix. * * @param ipiv The pivot indices; for 1 <= i <= min(M,N), row i of the * matrix was interchanged with row IPIV(i). Dimension min(M,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, D(i,i) is exactly zero. The factorization * has been completed, but the block diagonal matrix D is * exactly singular, and division by zero will occur if it * is used to solve a system of equations. */ int sptrf(Layout layout, UPLO uplo, int n, float[] AP, int[] ipiv); /** * Computes the Bunch–Kaufman factorization of a symmetric packed matrix A. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The dimension of the matrix A. * * @param AP The packed matrix. * * @param ipiv The pivot indices; for 1 <= i <= min(M,N), row i of the * matrix was interchanged with row IPIV(i). Dimension min(M,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, D(i,i) is exactly zero. The factorization * has been completed, but the block diagonal matrix D is * exactly singular, and division by zero will occur if it * is used to solve a system of equations. */ int sptrf(Layout layout, UPLO uplo, int n, FloatBuffer AP, IntBuffer ipiv); /** * Solves a system of linear equations *

     *     A * X = B
     * 
* or *

     *     A**T * X = B
     * 
* where A is an N-by-N matrix and X and B are N-by-NRHS matrices * using the LU factorization computed by GETRF. * * @param layout The matrix layout. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The LU factorization computed by GETRF. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param ipiv The pivot indices that define the permutation matrix P; * row i of the matrix was interchanged with row IPIV(i). * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value */ int getrs(Layout layout, Transpose trans, int n, int nrhs, double[] A, int lda, int[] ipiv, double[] B, int ldb); /** * Solves a system of linear equations *

     *     A * X = B
     * 
* or *

     *     A**T * X = B
     * 
* where A is an N-by-N matrix and X and B are N-by-NRHS matrices * using the LU factorization computed by GETRF. * * @param layout The matrix layout. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The LU factorization computed by GETRF. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param ipiv The pivot indices that define the permutation matrix P; * row i of the matrix was interchanged with row IPIV(i). * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value */ int getrs(Layout layout, Transpose trans, int n, int nrhs, DoubleBuffer A, int lda, IntBuffer ipiv, DoubleBuffer B, int ldb); /** * Solves a system of linear equations *

     *     A * X = B
     * 
* or *

     *     A**T * X = B
     * 
* where A is an N-by-N matrix and X and B are N-by-NRHS matrices * using the LU factorization computed by GETRF. * * @param layout The matrix layout. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The LU factorization computed by GETRF. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param ipiv The pivot indices that define the permutation matrix P; * row i of the matrix was interchanged with row IPIV(i). * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value */ int getrs(Layout layout, Transpose trans, int n, int nrhs, float[] A, int lda, int[] ipiv, float[] B, int ldb); /** * Solves a system of linear equations *

     *     A * X = B
     * 
* or *

     *     A**T * X = B
     * 
* where A is an N-by-N matrix and X and B are N-by-NRHS matrices * using the LU factorization computed by GETRF. * * @param layout The matrix layout. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The LU factorization computed by GETRF. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param ipiv The pivot indices that define the permutation matrix P; * row i of the matrix was interchanged with row IPIV(i). * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value */ int getrs(Layout layout, Transpose trans, int n, int nrhs, FloatBuffer A, int lda, IntBuffer ipiv, FloatBuffer B, int ldb); /** * Solves a system of linear equations *

     *     A * X = B
     * 
* or *

     *     A**T * X = B
     * 
* where A is an N-by-N band matrix and X and B are N-by-NRHS matrices * using the LU factorization computed by GBTRF. * * @param layout The matrix layout. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param kl The number of subdiagonal elements of band matrix. * * @param ku The number of superdiagonal elements of band matrix. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param AB The LU factorization computed by GBTRF. * * @param ldab The leading dimension of the matrix AB. LDA >= max(1,N). * * @param ipiv The pivot indices that define the permutation matrix P; * row i of the matrix was interchanged with row IPIV(i). * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value */ int gbtrs(Layout layout, Transpose trans, int n, int kl, int ku, int nrhs, double[] AB, int ldab, int[] ipiv, double[] B, int ldb); /** * Solves a system of linear equations *

     *     A * X = B
     * 
* or *

     *     A**T * X = B
     * 
* where A is an N-by-N band matrix and X and B are N-by-NRHS matrices * using the LU factorization computed by GBTRF. * * @param layout The matrix layout. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param kl The number of subdiagonal elements of band matrix. * * @param ku The number of superdiagonal elements of band matrix. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param AB The LU factorization computed by GBTRF. * * @param ldab The leading dimension of the matrix A. LDA >= max(1,N). * * @param ipiv The pivot indices that define the permutation matrix P; * row i of the matrix was interchanged with row IPIV(i). * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value */ int gbtrs(Layout layout, Transpose trans, int n, int kl, int ku, int nrhs, DoubleBuffer AB, int ldab, IntBuffer ipiv, DoubleBuffer B, int ldb); /** * Solves a system of linear equations *

     *     A * X = B
     * 
* or *

     *     A**T * X = B
     * 
* where A is an N-by-N band matrix and X and B are N-by-NRHS matrices * using the LU factorization computed by GBTRF. * * @param layout The matrix layout. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param kl The number of subdiagonal elements of band matrix. * * @param ku The number of superdiagonal elements of band matrix. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param AB The LU factorization computed by GBTRF. * * @param ldab The leading dimension of the matrix AB. LDA >= max(1,N). * * @param ipiv The pivot indices that define the permutation matrix P; * row i of the matrix was interchanged with row IPIV(i). * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value */ int gbtrs(Layout layout, Transpose trans, int n, int kl, int ku, int nrhs, float[] AB, int ldab, int[] ipiv, float[] B, int ldb); /** * Solves a system of linear equations *

     *     A * X = B
     * 
* or *

     *     A**T * X = B
     * 
* where A is an N-by-N band matrix and X and B are N-by-NRHS matrices * using the LU factorization computed by GBTRF. * * @param layout The matrix layout. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param kl The number of subdiagonal elements of band matrix. * * @param ku The number of superdiagonal elements of band matrix. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param AB The LU factorization computed by GBTRF. * * @param ldab The leading dimension of the matrix AB. LDA >= max(1,N). * * @param ipiv The pivot indices that define the permutation matrix P; * row i of the matrix was interchanged with row IPIV(i). * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value */ int gbtrs(Layout layout, Transpose trans, int n, int kl, int ku, int nrhs, FloatBuffer AB, int ldab, IntBuffer ipiv, FloatBuffer B, int ldb); /** * Solves a system of linear equations *

     *     A * X = B
     * 
* or *

     *     A**T * X = B
     * 
* where A is an N-by-N packed matrix and X and B are N-by-NRHS matrices * using the Bunch-Kaufman factorization computed by SPTRF. * * @param layout The matrix layout. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param AP The Bunch-Kaufman factorization computed by SPTRF. * * @param ipiv The pivot indices that define the permutation matrix P; * row i of the matrix was interchanged with row IPIV(i). * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value */ int sptrs(Layout layout, UPLO uplo, int n, int nrhs, double[] AP, int[] ipiv, double[] B, int ldb); /** * Solves a system of linear equations *

     *     A * X = B
     * 
* or *

     *     A**T * X = B
     * 
* where A is an N-by-N packed matrix and X and B are N-by-NRHS matrices * using the Bunch-Kaufman factorization computed by SPTRF. * * @param layout The matrix layout. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param AP The Bunch-Kaufman factorization computed by SPTRF. * * @param ipiv The pivot indices that define the permutation matrix P; * row i of the matrix was interchanged with row IPIV(i). * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value */ int sptrs(Layout layout, UPLO uplo, int n, int nrhs, DoubleBuffer AP, IntBuffer ipiv, DoubleBuffer B, int ldb); /** * Solves a system of linear equations *

     *     A * X = B
     * 
* or *

     *     A**T * X = B
     * 
* where A is an N-by-N packed matrix and X and B are N-by-NRHS matrices * using the Bunch-Kaufman factorization computed by SPTRF. * * @param layout The matrix layout. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param AP The Bunch-Kaufman factorization computed by SPTRF. * * @param ipiv The pivot indices that define the permutation matrix P; * row i of the matrix was interchanged with row IPIV(i). * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value */ int sptrs(Layout layout, UPLO uplo, int n, int nrhs, FloatBuffer AP, IntBuffer ipiv, FloatBuffer B, int ldb); /** * Solves a system of linear equations *

     *     A * X = B
     * 
* or *

     *     A**T * X = B
     * 
* where A is an N-by-N packed matrix and X and B are N-by-NRHS matrices * using the Bunch-Kaufman factorization computed by SPTRF. * * @param layout The matrix layout. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param AP The Bunch-Kaufman factorization computed by SPTRF. * * @param ipiv The pivot indices that define the permutation matrix P; * row i of the matrix was interchanged with row IPIV(i). * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value */ int sptrs(Layout layout, UPLO uplo, int n, int nrhs, float[] AP, int[] ipiv, float[] B, int ldb); /** * Computes the Cholesky factorization of a real symmetric * positive definite matrix A. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The dimension of the matrix A. * * @param A The matrix of dimension (LDA, N). * On exit, the factor U or L from the Cholesky * factorization A = U**T*U or A = L*L**T. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the leading minor of order i is not * positive definite, and the factorization could not be * completed. */ int potrf(Layout layout, UPLO uplo, int n, double[] A, int lda); /** * Computes the Cholesky factorization of a real symmetric * positive definite matrix A. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The dimension of the matrix A. * * @param A The matrix of dimension (LDA, N). * On exit, the factor U or L from the Cholesky * factorization A = U**T*U or A = L*L**T. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the leading minor of order i is not * positive definite, and the factorization could not be * completed. */ int potrf(Layout layout, UPLO uplo, int n, DoubleBuffer A, int lda); /** * Computes the Cholesky factorization of a real symmetric * positive definite matrix A. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The dimension of the matrix A. * * @param A The matrix of dimension (LDA, N). * On exit, the factor U or L from the Cholesky * factorization A = U**T*U or A = L*L**T. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the leading minor of order i is not * positive definite, and the factorization could not be * completed. */ int potrf(Layout layout, UPLO uplo, int n, float[] A, int lda); /** * Computes the Cholesky factorization of a real symmetric * positive definite matrix A. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The dimension of the matrix A. * * @param A The matrix of dimension (LDA, N). * On exit, the factor U or L from the Cholesky * factorization A = U**T*U or A = L*L**T. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the leading minor of order i is not * positive definite, and the factorization could not be * completed. */ int potrf(Layout layout, UPLO uplo, int n, FloatBuffer A, int lda); /** * Computes the Cholesky factorization of a real symmetric * positive definite matrix A using the recursive algorithm. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The dimension of the matrix A. * * @param A The matrix of dimension (LDA, N). * On exit, the factor U or L from the Cholesky * factorization A = U**T*U or A = L*L**T. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the leading minor of order i is not * positive definite, and the factorization could not be * completed. */ int potrf2(Layout layout, UPLO uplo, int n, double[] A, int lda); /** * Computes the Cholesky factorization of a real symmetric * positive definite matrix A using the recursive algorithm. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The dimension of the matrix A. * * @param A The matrix of dimension (LDA, N). * On exit, the factor U or L from the Cholesky * factorization A = U**T*U or A = L*L**T. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the leading minor of order i is not * positive definite, and the factorization could not be * completed. */ int potrf2(Layout layout, UPLO uplo, int n, DoubleBuffer A, int lda); /** * Computes the Cholesky factorization of a real symmetric * positive definite matrix A using the recursive algorithm. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The dimension of the matrix A. * * @param A The matrix of dimension (LDA, N). * On exit, the factor U or L from the Cholesky * factorization A = U**T*U or A = L*L**T. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the leading minor of order i is not * positive definite, and the factorization could not be * completed. */ int potrf2(Layout layout, UPLO uplo, int n, float[] A, int lda); /** * Computes the Cholesky factorization of a real symmetric * positive definite matrix A using the recursive algorithm. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The dimension of the matrix A. * * @param A The matrix of dimension (LDA, N). * On exit, the factor U or L from the Cholesky * factorization A = U**T*U or A = L*L**T. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the leading minor of order i is not * positive definite, and the factorization could not be * completed. */ int potrf2(Layout layout, UPLO uplo, int n, FloatBuffer A, int lda); /** * Computes the Cholesky factorization of a real symmetric * positive definite band matrix A. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The dimension of the matrix A. * * @param kd The number of superdiagonals/subdiagonals of the matrix A. * * @param AB The band matrix of dimension (LDA, N). * On exit, the factor U or L from the Cholesky * factorization A = U**T*U or A = L*L**T. * * @param ldab The leading dimension of the matrix A. LDA >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the leading minor of order i is not * positive definite, and the factorization could not be * completed. */ int pbtrf(Layout layout, UPLO uplo, int n, int kd, double[] AB, int ldab); /** * Computes the Cholesky factorization of a real symmetric * positive definite band matrix A. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The dimension of the matrix A. * * @param kd The number of superdiagonals/subdiagonals of the matrix A. * * @param AB The band matrix of dimension (LDA, N). * On exit, the factor U or L from the Cholesky * factorization A = U**T*U or A = L*L**T. * * @param ldab The leading dimension of the matrix A. LDA >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the leading minor of order i is not * positive definite, and the factorization could not be * completed. */ int pbtrf(Layout layout, UPLO uplo, int n, int kd, DoubleBuffer AB, int ldab); /** * Computes the Cholesky factorization of a real symmetric * positive definite band matrix A. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The dimension of the matrix A. * * @param kd The number of superdiagonals/subdiagonals of the matrix A. * * @param AB The band matrix of dimension (LDA, N). * On exit, the factor U or L from the Cholesky * factorization A = U**T*U or A = L*L**T. * * @param ldab The leading dimension of the matrix A. LDA >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the leading minor of order i is not * positive definite, and the factorization could not be * completed. */ int pbtrf(Layout layout, UPLO uplo, int n, int kd, float[] AB, int ldab); /** * Computes the Cholesky factorization of a real symmetric * positive definite band matrix A. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The dimension of the matrix A. * * @param kd The number of superdiagonals/subdiagonals of the matrix A. * * @param AB The band matrix of dimension (LDA, N). * On exit, the factor U or L from the Cholesky * factorization A = U**T*U or A = L*L**T. * * @param ldab The leading dimension of the matrix A. LDA >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the leading minor of order i is not * positive definite, and the factorization could not be * completed. */ int pbtrf(Layout layout, UPLO uplo, int n, int kd, FloatBuffer AB, int ldab); /** * Computes the Cholesky factorization of a real symmetric * positive definite packed matrix A. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The dimension of the matrix A. * * @param AP The packed matrix. * On exit, the factor U or L from the Cholesky * factorization A = U**T*U or A = L*L**T. * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the leading minor of order i is not * positive definite, and the factorization could not be * completed. */ int pptrf(Layout layout, UPLO uplo, int n, double[] AP); /** * Computes the Cholesky factorization of a real symmetric * positive definite packed matrix A. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The dimension of the matrix A. * * @param AP The packed matrix. * On exit, the factor U or L from the Cholesky * factorization A = U**T*U or A = L*L**T. * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the leading minor of order i is not * positive definite, and the factorization could not be * completed. */ int pptrf(Layout layout, UPLO uplo, int n, DoubleBuffer AP); /** * Computes the Cholesky factorization of a real symmetric * positive definite packed matrix A. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The dimension of the matrix A. * * @param AP The packed matrix. * On exit, the factor U or L from the Cholesky * factorization A = U**T*U or A = L*L**T. * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the leading minor of order i is not * positive definite, and the factorization could not be * completed. */ int pptrf(Layout layout, UPLO uplo, int n, float[] AP); /** * Computes the Cholesky factorization of a real symmetric * positive definite packed matrix A. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The dimension of the matrix A. * * @param AP The packed matrix. * On exit, the factor U or L from the Cholesky * factorization A = U**T*U or A = L*L**T. * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the leading minor of order i is not * positive definite, and the factorization could not be * completed. */ int pptrf(Layout layout, UPLO uplo, int n, FloatBuffer AP); /** * Solves a system of linear equations *

     *     A * X = B
     * 
* where A is an N-by-N symmetric positive definite matrix and * X and B are N-by-NRHS matrices using the Cholesky factorization * A = U**T*U or A = L*L**T computed by POTRF. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The triangular factor U or L from the Cholesky factorization * A = U**T*U or A = L*L**T, as computed by POTRF. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value */ int potrs(Layout layout, UPLO uplo, int n, int nrhs, double[] A, int lda, double[] B, int ldb); /** * Solves a system of linear equations *

     *     A * X = B
     * 
* where A is an N-by-N symmetric positive definite matrix and * X and B are N-by-NRHS matrices using the Cholesky factorization * A = U**T*U or A = L*L**T computed by POTRF. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The triangular factor U or L from the Cholesky factorization * A = U**T*U or A = L*L**T, as computed by POTRF. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value */ int potrs(Layout layout, UPLO uplo, int n, int nrhs, DoubleBuffer A, int lda, DoubleBuffer B, int ldb); /** * Solves a system of linear equations *

     *     A * X = B
     * 
* where A is an N-by-N symmetric positive definite matrix and * X and B are N-by-NRHS matrices using the Cholesky factorization * A = U**T*U or A = L*L**T computed by POTRF. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The triangular factor U or L from the Cholesky factorization * A = U**T*U or A = L*L**T, as computed by POTRF. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value */ int potrs(Layout layout, UPLO uplo, int n, int nrhs, float[] A, int lda, float[] B, int ldb); /** * Solves a system of linear equations *

     *     A * X = B
     * 
* where A is an N-by-N symmetric positive definite matrix and * X and B are N-by-NRHS matrices using the Cholesky factorization * A = U**T*U or A = L*L**T computed by POTRF. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param A The triangular factor U or L from the Cholesky factorization * A = U**T*U or A = L*L**T, as computed by POTRF. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value */ int potrs(Layout layout, UPLO uplo, int n, int nrhs, FloatBuffer A, int lda, FloatBuffer B, int ldb); /** * Solves a system of linear equations *

     *     A * X = B
     * 
* where A is an N-by-N symmetric positive definite band matrix and * X and B are N-by-NRHS matrices using the Cholesky factorization * A = U**T*U or A = L*L**T computed by POTRF. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param kd The number of superdiagonals/subdiagonals of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param AB The triangular factor U or L from the Cholesky factorization * A = U**T*U or A = L*L**T, as computed by PBTRF. * * @param ldab The leading dimension of the matrix AB. LDA >= max(1,N). * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value */ int pbtrs(Layout layout, UPLO uplo, int n, int kd, int nrhs, double[] AB, int ldab, double[] B, int ldb); /** * Solves a system of linear equations *

     *     A * X = B
     * 
* where A is an N-by-N symmetric positive definite band matrix and * X and B are N-by-NRHS matrices using the Cholesky factorization * A = U**T*U or A = L*L**T computed by POTRF. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param kd The number of superdiagonals/subdiagonals of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param AB The triangular factor U or L from the Cholesky factorization * A = U**T*U or A = L*L**T, as computed by PBTRF. * * @param ldab The leading dimension of the matrix AB. LDA >= max(1,N). * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value */ int pbtrs(Layout layout, UPLO uplo, int n, int kd, int nrhs, DoubleBuffer AB, int ldab, DoubleBuffer B, int ldb); /** * Solves a system of linear equations *

     *     A * X = B
     * 
* where A is an N-by-N symmetric positive definite band matrix and * X and B are N-by-NRHS matrices using the Cholesky factorization * A = U**T*U or A = L*L**T computed by POTRF. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param kd The number of superdiagonals/subdiagonals of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param AB The triangular factor U or L from the Cholesky factorization * A = U**T*U or A = L*L**T, as computed by PBTRF. * * @param ldab The leading dimension of the matrix AB. LDA >= max(1,N). * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value */ int pbtrs(Layout layout, UPLO uplo, int n, int kd, int nrhs, float[] AB, int ldab, float[] B, int ldb); /** * Solves a system of linear equations *

     *     A * X = B
     * 
* where A is an N-by-N symmetric positive definite band matrix and * X and B are N-by-NRHS matrices using the Cholesky factorization * A = U**T*U or A = L*L**T computed by POTRF. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param kd The number of superdiagonals/subdiagonals of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param AB The triangular factor U or L from the Cholesky factorization * A = U**T*U or A = L*L**T, as computed by PBTRF. * * @param ldab The leading dimension of the matrix AB. LDA >= max(1,N). * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value */ int pbtrs(Layout layout, UPLO uplo, int n, int kd, int nrhs, FloatBuffer AB, int ldab, FloatBuffer B, int ldb); /** * Solves a system of linear equations *

     *     A * X = B
     * 
* where A is an N-by-N symmetric positive definite packed matrix and * X and B are N-by-NRHS matrices using the Cholesky factorization * A = U**T*U or A = L*L**T computed by PPTRF. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param AP The triangular factor U or L from the Cholesky factorization * A = U**T*U or A = L*L**T, as computed by PPTRF. * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value */ int pptrs(Layout layout, UPLO uplo, int n, int nrhs, double[] AP, double[] B, int ldb); /** * Solves a system of linear equations *

     *     A * X = B
     * 
* where A is an N-by-N symmetric positive definite packed matrix and * X and B are N-by-NRHS matrices using the Cholesky factorization * A = U**T*U or A = L*L**T computed by PPTRF. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param AP The triangular factor U or L from the Cholesky factorization * A = U**T*U or A = L*L**T, as computed by PPTRF. * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value */ int pptrs(Layout layout, UPLO uplo, int n, int nrhs, DoubleBuffer AP, DoubleBuffer B, int ldb); /** * Solves a system of linear equations *

     *     A * X = B
     * 
* where A is an N-by-N symmetric positive definite packed matrix and * X and B are N-by-NRHS matrices using the Cholesky factorization * A = U**T*U or A = L*L**T computed by PPTRF. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param AP The triangular factor U or L from the Cholesky factorization * A = U**T*U or A = L*L**T, as computed by PPTRF. * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value */ int pptrs(Layout layout, UPLO uplo, int n, int nrhs, float[] AP, float[] B, int ldb); /** * Solves a system of linear equations *

     *     A * X = B
     * 
* where A is an N-by-N symmetric positive definite packed matrix and * X and B are N-by-NRHS matrices using the Cholesky factorization * A = U**T*U or A = L*L**T computed by PPTRF. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param n The number of linear equations, i.e., the order of the matrix A. * * @param nrhs The number of right hand sides, i.e., the number of columns * of the matrix B. * * @param AP The triangular factor U or L from the Cholesky factorization * A = U**T*U or A = L*L**T, as computed by PPTRF. * * @param B On entry, the N-by-NRHS matrix of right hand side matrix B. * On exit, if INFO = 0, the N-by-NRHS solution matrix X. * * @param ldb The leading dimension of the matrix B. LDB >= max(1,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value */ int pptrs(Layout layout, UPLO uplo, int n, int nrhs, FloatBuffer AP, FloatBuffer B, int ldb); /** * Computes a QR factorization of a general M-by-N matrix A. * * @param layout The matrix layout. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param A The matrix of dimension (LDA, N). * On exit, the elements on and above the diagonal of the array * contain the min(M,N)-by-N upper trapezoidal matrix R (R is * upper triangular if m >= n); the elements below the diagonal, * with the array TAU, represent the orthogonal matrix Q as a * product of min(m,n) elementary reflectors. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param tau The scalar factors of the elementary reflectors. Dimension min(M,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value */ int geqrf(Layout layout, int m, int n, double[] A, int lda, double[] tau); /** * Computes a QR factorization of a general M-by-N matrix A. * * @param layout The matrix layout. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param A The matrix of dimension (LDA, N). * On exit, the elements on and above the diagonal of the array * contain the min(M,N)-by-N upper trapezoidal matrix R (R is * upper triangular if m >= n); the elements below the diagonal, * with the array TAU, represent the orthogonal matrix Q as a * product of min(m,n) elementary reflectors. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param tau The scalar factors of the elementary reflectors. Dimension min(M,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value */ int geqrf(Layout layout, int m, int n, DoubleBuffer A, int lda, DoubleBuffer tau); /** * Computes a QR factorization of a general M-by-N matrix A. * * @param layout The matrix layout. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param A The matrix of dimension (LDA, N). * On exit, the elements on and above the diagonal of the array * contain the min(M,N)-by-N upper trapezoidal matrix R (R is * upper triangular if m >= n); the elements below the diagonal, * with the array TAU, represent the orthogonal matrix Q as a * product of min(m,n) elementary reflectors. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param tau The scalar factors of the elementary reflectors. Dimension min(M,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value */ int geqrf(Layout layout, int m, int n, float[] A, int lda, float[] tau); /** * Computes a QR factorization of a general M-by-N matrix A. * * @param layout The matrix layout. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param A The matrix of dimension (LDA, N). * On exit, the elements on and above the diagonal of the array * contain the min(M,N)-by-N upper trapezoidal matrix R (R is * upper triangular if m >= n); the elements below the diagonal, * with the array TAU, represent the orthogonal matrix Q as a * product of min(m,n) elementary reflectors. * * @param lda The leading dimension of the matrix A. LDA >= max(1,N). * * @param tau The scalar factors of the elementary reflectors. Dimension min(M,N). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value */ int geqrf(Layout layout, int m, int n, FloatBuffer A, int lda, FloatBuffer tau); /** * Overwrites the general real M-by-N matrix C with *

     *                  SIDE = 'L'     SIDE = 'R'
     *  TRANS = 'N':      Q * C          C * Q
     *  TRANS = 'T':      Q**T * C       C * Q**T
     * 
* where Q is a real orthogonal matrix defined as the product of k * elementary reflectors *

     *        Q = H(1) H(2) . . . H(k)
     * 
* as returned by GEQRF. Q is of order M if SIDE = 'L' and of order N * if SIDE = 'R'. * * @param layout The matrix layout. * * @param side Apply Q or Q**T from the Left; * or apply Q or Q**T from the Right. * * @param trans No transpose, apply Q; * Transpose, apply Q**T. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param k The number of elementary reflectors whose product defines * the matrix Q. * * @param A The matrix of dimension (LDA, K). * The i-th column must contain the vector which defines the * elementary reflector H(i), for i = 1,2,...,k, as returned by * GEQRF in the first k columns of its array argument A. * * @param lda The leading dimension of the matrix A. * If SIDE = 'L', LDA >= max(1,M); * if SIDE = 'R', LDA >= max(1,N). * * @param tau The scalar factors of the elementary reflectors, as returned by GEQRF. * * @param C On entry, the M-by-N matrix C. * On exit, C is overwritten by Q*C or Q**T*C or C*Q**T or C*Q. * * @param ldc The leading dimension of the matrix C. LDC >= max(1,M). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value */ int ormqr(Layout layout, Side side, Transpose trans, int m, int n, int k, double[] A, int lda, double[] tau, double[] C, int ldc); /** * Overwrites the general real M-by-N matrix C with *

     *                  SIDE = 'L'     SIDE = 'R'
     *  TRANS = 'N':      Q * C          C * Q
     *  TRANS = 'T':      Q**T * C       C * Q**T
     * 
* where Q is a real orthogonal matrix defined as the product of k * elementary reflectors *

     *        Q = H(1) H(2) . . . H(k)
     * 
* as returned by GEQRF. Q is of order M if SIDE = 'L' and of order N * if SIDE = 'R'. * * @param layout The matrix layout. * * @param side Apply Q or Q**T from the Left; * or apply Q or Q**T from the Right. * * @param trans No transpose, apply Q; * Transpose, apply Q**T. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param k The number of elementary reflectors whose product defines * the matrix Q. * * @param A The matrix of dimension (LDA, K). * The i-th column must contain the vector which defines the * elementary reflector H(i), for i = 1,2,...,k, as returned by * GEQRF in the first k columns of its array argument A. * * @param lda The leading dimension of the matrix A. * If SIDE = 'L', LDA >= max(1,M); * if SIDE = 'R', LDA >= max(1,N). * * @param tau The scalar factors of the elementary reflectors, as returned by GEQRF. * * @param C On entry, the M-by-N matrix C. * On exit, C is overwritten by Q*C or Q**T*C or C*Q**T or C*Q. * * @param ldc The leading dimension of the matrix C. LDC >= max(1,M). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value */ int ormqr(Layout layout, Side side, Transpose trans, int m, int n, int k, DoubleBuffer A, int lda, DoubleBuffer tau, DoubleBuffer C, int ldc); /** * Overwrites the general real M-by-N matrix C with *

     *                  SIDE = 'L'     SIDE = 'R'
     *  TRANS = 'N':      Q * C          C * Q
     *  TRANS = 'T':      Q**T * C       C * Q**T
     * 
* where Q is a real orthogonal matrix defined as the product of k * elementary reflectors *

     *        Q = H(1) H(2) . . . H(k)
     * 
* as returned by GEQRF. Q is of order M if SIDE = 'L' and of order N * if SIDE = 'R'. * * @param layout The matrix layout. * * @param side Apply Q or Q**T from the Left; * or apply Q or Q**T from the Right. * * @param trans No transpose, apply Q; * Transpose, apply Q**T. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param k The number of elementary reflectors whose product defines * the matrix Q. * * @param A The matrix of dimension (LDA, K). * The i-th column must contain the vector which defines the * elementary reflector H(i), for i = 1,2,...,k, as returned by * GEQRF in the first k columns of its array argument A. * * @param lda The leading dimension of the matrix A. * If SIDE = 'L', LDA >= max(1,M); * if SIDE = 'R', LDA >= max(1,N). * * @param tau The scalar factors of the elementary reflectors, as returned by GEQRF. * * @param C On entry, the M-by-N matrix C. * On exit, C is overwritten by Q*C or Q**T*C or C*Q**T or C*Q. * * @param ldc The leading dimension of the matrix C. LDC >= max(1,M). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value */ int ormqr(Layout layout, Side side, Transpose trans, int m, int n, int k, float[] A, int lda, float[] tau, float[] C, int ldc); /** * Overwrites the general real M-by-N matrix C with *

     *                  SIDE = 'L'     SIDE = 'R'
     *  TRANS = 'N':      Q * C          C * Q
     *  TRANS = 'T':      Q**T * C       C * Q**T
     * 
* where Q is a real orthogonal matrix defined as the product of k * elementary reflectors *

     *        Q = H(1) H(2) . . . H(k)
     * 
* as returned by GEQRF. Q is of order M if SIDE = 'L' and of order N * if SIDE = 'R'. * * @param layout The matrix layout. * * @param side Apply Q or Q**T from the Left; * or apply Q or Q**T from the Right. * * @param trans No transpose, apply Q; * Transpose, apply Q**T. * * @param m The number of rows of the matrix A. * * @param n The number of columns of the matrix A. * * @param k The number of elementary reflectors whose product defines * the matrix Q. * * @param A The matrix of dimension (LDA, K). * The i-th column must contain the vector which defines the * elementary reflector H(i), for i = 1,2,...,k, as returned by * GEQRF in the first k columns of its array argument A. * * @param lda The leading dimension of the matrix A. * If SIDE = 'L', LDA >= max(1,M); * if SIDE = 'R', LDA >= max(1,N). * * @param tau The scalar factors of the elementary reflectors, as returned by GEQRF. * * @param C On entry, the M-by-N matrix C. * On exit, C is overwritten by Q*C or Q**T*C or C*Q**T or C*Q. * * @param ldc The leading dimension of the matrix C. LDC >= max(1,M). * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value */ int ormqr(Layout layout, Side side, Transpose trans, int m, int n, int k, FloatBuffer A, int lda, FloatBuffer tau, FloatBuffer C, int ldc); /** * Solves a triangular system of the form *

     *     A * X = B
     * 
* or *

     *     A**T * X = B
     * 
* where A is a triangular matrix of order N, and B is an N-by-NRHS * matrix. A check is made to verify that A is nonsingular. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param trans The normal or transpose of the matrix A. * * @param diag A is unit diagonal triangular or not. * * @param n The order of the matrix A. * * @param nrhs The number of right hand sides. * * @param A The triangular matrix A. * * @param lda The leading dimension of the matrix A. * * @param B On entry, the right hand side matrix B. * On exit, if INFO = 0, the solution matrix X. * * @param ldb The leading dimension of the matrix B. * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the i-th diagonal element of A is zero, * indicating that the matrix is singular and the solutions * X have not been computed. */ int trtrs(Layout layout, UPLO uplo, Transpose trans, Diag diag, int n, int nrhs, double[] A, int lda, double[] B, int ldb); /** * Solves a triangular system of the form *

     *     A * X = B
     * 
* or *

     *     A**T * X = B
     * 
* where A is a triangular matrix of order N, and B is an N-by-NRHS * matrix. A check is made to verify that A is nonsingular. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param trans The normal or transpose of the matrix A. * * @param diag A is unit diagonal triangular or not. * * @param n The order of the matrix A. * * @param nrhs The number of right hand sides. * * @param A The triangular matrix A. * * @param lda The leading dimension of the matrix A. * * @param B On entry, the right hand side matrix B. * On exit, if INFO = 0, the solution matrix X. * * @param ldb The leading dimension of the matrix B. * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the i-th diagonal element of A is zero, * indicating that the matrix is singular and the solutions * X have not been computed. */ int trtrs(Layout layout, UPLO uplo, Transpose trans, Diag diag, int n, int nrhs, DoubleBuffer A, int lda, DoubleBuffer B, int ldb); /** * Solves a triangular system of the form *

     *     A * X = B
     * 
* or *

     *     A**T * X = B
     * 
* where A is a triangular matrix of order N, and B is an N-by-NRHS * matrix. A check is made to verify that A is nonsingular. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param trans The normal or transpose of the matrix A. * * @param diag A is unit diagonal triangular or not. * * @param n The order of the matrix A. * * @param nrhs The number of right hand sides. * * @param A The triangular matrix A. * * @param lda The leading dimension of the matrix A. * * @param B On entry, the right hand side matrix B. * On exit, if INFO = 0, the solution matrix X. * * @param ldb The leading dimension of the matrix B. * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the i-th diagonal element of A is zero, * indicating that the matrix is singular and the solutions * X have not been computed. */ int trtrs(Layout layout, UPLO uplo, Transpose trans, Diag diag, int n, int nrhs, float[] A, int lda, float[] B, int ldb); /** * Solves a triangular system of the form *

     *     A * X = B
     * 
* or *

     *     A**T * X = B
     * 
* where A is a triangular matrix of order N, and B is an N-by-NRHS * matrix. A check is made to verify that A is nonsingular. * * @param layout The matrix layout. * * @param uplo The upper or lower triangular part of the matrix A is * to be referenced. * * @param trans The normal or transpose of the matrix A. * * @param diag A is unit diagonal triangular or not. * * @param n The order of the matrix A. * * @param nrhs The number of right hand sides. * * @param A The triangular matrix A. * * @param lda The leading dimension of the matrix A. * * @param B On entry, the right hand side matrix B. * On exit, if INFO = 0, the solution matrix X. * * @param ldb The leading dimension of the matrix B. * * @return INFO flag. * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value * > 0: if INFO = i, the i-th diagonal element of A is zero, * indicating that the matrix is singular and the solutions * X have not been computed. */ int trtrs(Layout layout, UPLO uplo, Transpose trans, Diag diag, int n, int nrhs, FloatBuffer A, int lda, FloatBuffer B, int ldb); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy