Overview | Package | Class | Tree | Index | Help
PREV | NEXT FRAMES  | NO FRAMES

Serialized Form


Package Jama

Class Jama.CholeskyDecomposition

This class implements Serializable.

Serialized Form - Methods

No readObject or writeObject method declared.

Serialized Form - Fields

isspd

boolean isspd
is symmetric and positive definite flag.

L

double[][] L
internal array storage.

n

int n
matrix dimension.


Class Jama.EigenvalueDecomposition

This class implements Serializable.

Serialized Form - Methods

No readObject or writeObject method declared.

Serialized Form - Fields

d

double[] d
internal storage of eigenvalues.

e

double[] e
internal storage of eigenvalues.

H

double[][] H
internal storage of nonsymmetric Hessenberg form.

issymmetric

boolean issymmetric
internal symmetry flag.

n

int n
matrix dimension.

ort

double[] ort
working storage for nonsymmetric algorithm.

V

double[][] V
internal storage of eigenvectors.


Class Jama.LUDecomposition

This class implements Serializable.

Serialized Form - Methods

No readObject or writeObject method declared.

Serialized Form - Fields

LU

double[][] LU
internal array storage.

m

int m
column dimension.

n

int n
column dimension.

piv

int[] piv
pivot vector.

pivsign

int pivsign
column dimension.


Class Jama.Matrix

This class implements Serializable.

Serialized Form - Methods

No readObject or writeObject method declared.

Serialized Form - Fields

A

double[][] A
internal array storage.

m

int m
row dimension.

n

int n
row dimension.


Class Jama.QRDecomposition

This class implements Serializable.

Serialized Form - Methods

No readObject or writeObject method declared.

Serialized Form - Fields

m

int m
column dimension.

n

int n
column dimension.

QR

double[][] QR
internal array storage.

Rdiag

double[] Rdiag
diagonal of R.


Class Jama.SingularValueDecomposition

This class implements Serializable.

Serialized Form - Methods

No readObject or writeObject method declared.

Serialized Form - Fields

m

int m
row dimension.

n

int n
row dimension.

s

double[] s
internal storage of singular values.

U

double[][] U
internal storage of U.

V

double[][] V
internal storage of U.


Overview | Package | Class | Tree | Index | Help
PREV | NEXT FRAMES  | NO FRAMES