| Package | Description |
|---|---|
| net.frobenius |
Convenience API
|
| net.frobenius.lapack |
LAPACK high-level API (sort of) which provides parameter checking and
automatic workspace allocation which should be a bit more convenient to use.
|
| Modifier and Type | Method and Description |
|---|---|
static TDiag |
TDiag.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TDiag[] |
TDiag.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
static void |
PlainLapack.dtbtrs(Lapack la,
TUpLo uplo,
TTrans trans,
TDiag diag,
int n,
int diagCount,
int rhsCount,
double[] ab,
double[] b,
int ldb)
Purpose
=======
DTBTRS solves a triangular system of the form
A * X = B or A**T * X = B,
where A is a triangular band matrix of order N, and B is an
N-by NRHS matrix. |
static void |
PlainLapack.dtptrs(Lapack la,
TUpLo uplo,
TTrans trans,
TDiag diag,
int n,
int rhsCount,
double[] ap,
double[] b,
int ldb)
Purpose
=======
DTPTRS solves a triangular system of the form
A * X = B or A**T * X = B,
where A is a triangular matrix of order N stored in packed format,
and B is an N-by-NRHS matrix. |
static void |
PlainLapack.dtrtrs(Lapack la,
TUpLo uplo,
TTrans trans,
TDiag diag,
int n,
int rhsCount,
double[] a,
int lda,
double[] b,
int ldb)
Purpose
=======
DTRTRS 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. |
Copyright © 2023. All rights reserved.