| 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 TRange |
TRange.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TRange[] |
TRange.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
static int |
PlainLapack.dstevr(Lapack la,
TEigJob jobz,
TRange range,
int n,
double[] d,
double[] e,
double vLower,
double vUpper,
int iLower,
int iUpper,
double abstol,
double[] w,
double[] z,
int ldz,
int[] supportZ)
Purpose
=======
DSTEVR computes selected eigenvalues and, optionally, eigenvectors
of a real symmetric tridiagonal matrix T. |
static int |
PlainLapack.dsyevr(Lapack la,
TEigJob jobz,
TRange range,
TUpLo uplo,
int n,
double[] a,
int lda,
double vLower,
double vUpper,
int iLower,
int iUpper,
double abstol,
double[] w,
double[] z,
int ldz,
int[] supportZ)
Purpose
=======
DSYEVR computes selected eigenvalues and, optionally, eigenvectors
of a real symmetric matrix A. |
Copyright © 2023. All rights reserved.