| 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 TNorm |
TNorm.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TNorm[] |
TNorm.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
static double |
PlainLapack.dgbcon(Lapack la,
TNorm norm,
int n,
int kl,
int ku,
double[] ab,
int[] indices,
double normA)
Purpose
=======
DGBCON estimates the reciprocal of the condition number of a real
general band matrix A, in either the 1-norm or the infinity-norm,
using the LU factorization computed by DGBTRF. |
static double |
PlainLapack.dgecon(Lapack la,
TNorm norm,
int n,
double[] a,
int lda,
double normA)
Purpose
=======
DGECON estimates the reciprocal of the condition number of a general
real matrix A, in either the 1-norm or the infinity-norm, using
the LU factorization computed by DGETRF. |
Copyright © 2023. All rights reserved.