| 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 TSide |
TSide.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TSide[] |
TSide.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.dormrz(Lapack la,
TSide side,
TTrans trans,
int m,
int n,
int k,
int l,
double[] a,
int lda,
double[] tau,
double[] c,
int ldc)
Purpose
=======
DORMRZ 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) . . . |
Copyright © 2023. All rights reserved.