| 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 TSvdJob |
TSvdJob.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TSvdJob[] |
TSvdJob.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.cgesdd(Lapack la,
TSvdJob jobz,
int m,
int n,
float[] a,
int lda,
float[] s,
float[] u,
int ldu,
float[] vt,
int ldvt) |
static void |
PlainLapack.dgesdd(Lapack la,
TSvdJob jobz,
int m,
int n,
double[] a,
int lda,
double[] s,
double[] u,
int ldu,
double[] vt,
int ldvt)
Purpose
=======
DGESDD computes the singular value decomposition (SVD) of a real
M-by-N matrix A, optionally computing the left and right singular
vectors. |
static void |
PlainLapack.sgesdd(Lapack la,
TSvdJob jobz,
int m,
int n,
float[] a,
int lda,
float[] s,
float[] u,
int ldu,
float[] vt,
int ldvt)
Purpose
=======
SGESDD computes the singular value decomposition (SVD) of a real
M-by-N matrix A, optionally computing the left and right singular
vectors. |
static void |
PlainLapack.zgesdd(Lapack la,
TSvdJob jobz,
int m,
int n,
double[] a,
int lda,
double[] s,
double[] u,
int ldu,
double[] vt,
int ldvt) |
Copyright © 2023. All rights reserved.