Serialized Form


Package mpv2

Class mpv2.AllMatrices extends java.lang.Object implements Serializable

Serialized Fields

N

int N
Row and column dimensions.

row dimension.

K

int K
Row and column dimensions.

row dimension.

Class mpv2.BandMatrix extends AllMatrices implements Serializable

Serialized Fields

fn

int[] fn
Stores the number of zeros in the beginning of each column If this variable is null then a non-sparse storing is used, all column vectors are assumed to start at first position and have length N, i.e. fv[k].length == N.


fv

double[][] fv
Stores the values of each dictionary entry.

Class mpv2.BlockMatrix extends AllMatrices implements Serializable

Serialized Fields

A

AllMatrices A
Only pointers to the submatrices are stored

internal array storage.

B

AllMatrices B
Only pointers to the submatrices are stored

internal array storage.

C

AllMatrices C
Only pointers to the submatrices are stored

internal array storage.

D

AllMatrices D
Only pointers to the submatrices are stored

internal array storage.

top

int top

left

int left

Class mpv2.CholeskyDecomposition extends java.lang.Object implements Serializable

Serialized Fields

L

double[][] L
Array for internal storage of decomposition.

internal array storage.

n

int n
Row and column dimension (square matrix).

matrix dimension.

isspd

boolean isspd
Symmetric and positive definite flag.

is symmetric and positive definite flag.

Class mpv2.DiagonalMatrix extends AllMatrices implements Serializable

Serialized Fields

diag

double[] diag
Array for internal storage of elements.

internal array storage.

Class mpv2.EigenvalueDecomposition extends java.lang.Object implements Serializable

Serialized Fields

n

int n
Row and column dimension (square matrix).

matrix dimension.

issymmetric

boolean issymmetric
Symmetry flag.

internal symmetry flag.

d

double[] d
Arrays for internal storage of eigenvalues.

internal storage of eigenvalues.

e

double[] e
Arrays for internal storage of eigenvalues.

internal storage of eigenvalues.

V

double[][] V
Array for internal storage of eigenvectors.

internal storage of eigenvectors.

H

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

internal storage of nonsymmetric Hessenberg form.

ort

double[] ort
Working storage for nonsymmetric algorithm.

working storage for nonsymmetric algorithm.

Class mpv2.JamaMatrix extends AllMatrices implements Serializable

Serialized Fields

A

double[][] A
Array for internal storage of elements.

internal array storage.

m

int m
Row and column dimensions.

row dimension.

n

int n
Row and column dimensions.

row dimension.

Class mpv2.LUDecomposition extends java.lang.Object implements Serializable

Serialized Fields

LU

double[][] LU
Array for internal storage of decomposition.

internal array storage.

m

int m
Row and column dimensions, and pivot sign.

column dimension.

n

int n
Row and column dimensions, and pivot sign.

column dimension.

pivsign

int pivsign
Row and column dimensions, and pivot sign.

column dimension.

piv

int[] piv
Internal storage of pivot vector.

pivot vector.

Class mpv2.LUPDecomposition extends java.lang.Object implements Serializable

Serialized Fields

LU

double[] LU
Array for internal storage of decomposition and permutations

internal array storage.

perm

int[] perm

N

int N
Row and column dimensions.

column dimension.

K

int K
Row and column dimensions.

column dimension.

pivsign

int pivsign
Row and column dimensions.

column dimension.

Class mpv2.Maths extends java.lang.Object implements Serializable

Class mpv2.PermutationMatrix extends AllMatrices implements Serializable

Serialized Fields

pos

int[] pos
Array for internal storage of elements. Gives position for the ones in each row, A(n,k)==1 <=> pos[n]==k.

internal array storage.

Class mpv2.QRDecomposition extends java.lang.Object implements Serializable

Serialized Fields

QR

double[][] QR
Array for internal storage of decomposition.

internal array storage.

m

int m
Row and column dimensions.

column dimension.

n

int n
Row and column dimensions.

column dimension.

Rdiag

double[] Rdiag
Array for internal storage of diagonal of R.

diagonal of R.

Class mpv2.RepeatBlockMatrix extends AllMatrices implements Serializable

Serialized Fields

M

AllMatrices M
Only pointers to the submatrices are stored

internal array storage.

dN

int dN

dK

int dK

L

int L

Class mpv2.SimpleMatrix extends AllMatrices implements Serializable

Serialized Fields

Aarray

double[] Aarray
Array for internal storage of elements, column-stacked array.

internal array storage.

Class mpv2.SingularValueDecomposition extends java.lang.Object implements Serializable

Serialized Fields

U

double[][] U
Arrays for internal storage of U and V.

internal storage of U.

V

double[][] V
Arrays for internal storage of U and V.

internal storage of U.

s

double[] s
Array for internal storage of singular values.

internal storage of singular values.

m

int m
Row and column dimensions.

row dimension.

n

int n
Row and column dimensions.

row dimension.

Class mpv2.SparseMatrix extends AllMatrices implements Serializable

Serialized Fields

nonZeroRow

int[] nonZeroRow

nonZeroColumn

int[] nonZeroColumn

nonZeroValue

double[] nonZeroValue

nextInSameRow

int[] nextInSameRow

nextInSameColumn

int[] nextInSameColumn

iNextFree

int iNextFree

firstInRow

int[] firstInRow

firstInColumn

int[] firstInColumn

nonZeroCount

int nonZeroCount

capacity

int capacity

increment

int increment

Class mpv2.SparseVector extends java.lang.Object implements Serializable

Serialized Fields

N

int N

nonZeroCount

int nonZeroCount

index

int[] index

value

double[] value

Class mpv2.SparseVectorMatrix extends AllMatrices implements Serializable

Serialized Fields

col

SparseVector[] col
Stores the pointers to each column in an array

Class mpv2.SymmetricMatrix extends AllMatrices implements Serializable

Serialized Fields

Aarray

double[] Aarray
Array for internal storage of elements, column-stacked array.

internal array storage.