A C D E F G H I J L M N P Q R S T U W 

A

arrayLeftDivide(FloatMatrix) - Method in class Jama.FloatMatrix
Element-by-element left division, C = A.
arrayLeftDivide(Matrix) - Method in class Jama.Matrix
Element-by-element left division, C = A.
arrayLeftDivideEquals(FloatMatrix) - Method in class Jama.FloatMatrix
Element-by-element left division in place, A = A.
arrayLeftDivideEquals(Matrix) - Method in class Jama.Matrix
Element-by-element left division in place, A = A.
arrayRightDivide(FloatMatrix) - Method in class Jama.FloatMatrix
Element-by-element right division, C = A.
arrayRightDivide(Matrix) - Method in class Jama.Matrix
Element-by-element right division, C = A.
arrayRightDivideEquals(FloatMatrix) - Method in class Jama.FloatMatrix
Element-by-element right division in place, A = A.
arrayRightDivideEquals(Matrix) - Method in class Jama.Matrix
Element-by-element right division in place, A = A.
arrayTimes(FloatMatrix) - Method in class Jama.FloatMatrix
Element-by-element multiplication, C = A.
arrayTimes(Matrix) - Method in class Jama.Matrix
Element-by-element multiplication, C = A.
arrayTimesEquals(FloatMatrix) - Method in class Jama.FloatMatrix
Element-by-element multiplication in place, A = A.
arrayTimesEquals(Matrix) - Method in class Jama.Matrix
Element-by-element multiplication in place, A = A.

C

chol() - Method in class Jama.Matrix
Cholesky Decomposition
CholeskyDecomposition - Class in Jama
Cholesky Decomposition.
CholeskyDecomposition(Matrix) - Constructor for class Jama.CholeskyDecomposition
Cholesky algorithm for symmetric and positive definite matrix.
clone() - Method in class Jama.FloatMatrix
Clone the FloatMatrix object.
clone() - Method in class Jama.Matrix
Clone the Matrix object.
cond() - Method in class Jama.Matrix
Matrix condition (2 norm)
cond() - Method in class Jama.SingularValueDecomposition
Two norm condition number
constructWithCopy(float[][]) - Static method in class Jama.FloatMatrix
Construct a matrix from a copy of a 2-D array.
constructWithCopy(double[][]) - Static method in class Jama.Matrix
Construct a matrix from a copy of a 2-D array.
copy() - Method in class Jama.FloatMatrix
Make a deep copy of a matrix
copy() - Method in class Jama.Matrix
Make a deep copy of a matrix

D

det() - Method in class Jama.LUDecomposition
Determinant
det() - Method in class Jama.Matrix
Matrix determinant

E

eig() - Method in class Jama.Matrix
Eigenvalue Decomposition
EigenvalueDecomposition - Class in Jama
Eigenvalues and eigenvectors of a real matrix.
EigenvalueDecomposition(Matrix) - Constructor for class Jama.EigenvalueDecomposition
Check for symmetry, then construct the eigenvalue decomposition Structure to access D and V.
equals(Object) - Method in class Jama.FloatMatrix
 
equals(Object) - Method in class Jama.Matrix
 

F

FloatMatrix - Class in Jama
Matrix which stores values only with double precision.
FloatMatrix(int, int) - Constructor for class Jama.FloatMatrix
Construct an m-by-n matrix of zeros.
FloatMatrix(int, int, float) - Constructor for class Jama.FloatMatrix
Construct an m-by-n constant matrix.
FloatMatrix(float[][]) - Constructor for class Jama.FloatMatrix
Construct a matrix from a 2-D array.
FloatMatrix(float[][], int, int) - Constructor for class Jama.FloatMatrix
Construct a matrix quickly without checking arguments.
FloatMatrix(float[], int) - Constructor for class Jama.FloatMatrix
Construct a matrix from a one-dimensional packed array

G

get(int, int) - Method in class Jama.FloatMatrix
Get a single element.
get(int, int) - Method in class Jama.Matrix
Get a single element.
getArray() - Method in class Jama.FloatMatrix
Access the internal two-dimensional array.
getArray() - Method in class Jama.Matrix
Access the internal two-dimensional array.
getArrayCopy() - Method in class Jama.FloatMatrix
Copy the internal two-dimensional array.
getArrayCopy() - Method in class Jama.Matrix
Copy the internal two-dimensional array.
getColumnDimension() - Method in class Jama.FloatMatrix
Get column dimension.
getColumnDimension() - Method in class Jama.Matrix
Get column dimension.
getColumnPackedCopy() - Method in class Jama.FloatMatrix
Make a one-dimensional column packed copy of the internal array.
getColumnPackedCopy() - Method in class Jama.Matrix
Make a one-dimensional column packed copy of the internal array.
getColumnVector(int) - Method in class Jama.Matrix
Returns the column vector for the specified column.
getD() - Method in class Jama.EigenvalueDecomposition
Return the block diagonal eigenvalue matrix
getDoublePivot() - Method in class Jama.LUDecomposition
Return pivot permutation vector as a one-dimensional double array
getFloatMatrix(int, int, int, int) - Method in class Jama.FloatMatrix
Get a submatrix.
getFloatMatrix(int[], int[]) - Method in class Jama.FloatMatrix
Get a submatrix.
getFloatMatrix(int, int, int[]) - Method in class Jama.FloatMatrix
Get a submatrix.
getFloatMatrix(int[], int, int) - Method in class Jama.FloatMatrix
Get a submatrix.
getH() - Method in class Jama.QRDecomposition
Return the Householder vectors
getImagEigenvalues() - Method in class Jama.EigenvalueDecomposition
Return the imaginary parts of the eigenvalues
getL() - Method in class Jama.CholeskyDecomposition
Return triangular factor.
getL() - Method in class Jama.LUDecomposition
Return lower triangular factor
getMatrix(int, int, int, int) - Method in class Jama.Matrix
Get a submatrix.
getMatrix(int[], int[]) - Method in class Jama.Matrix
Get a submatrix.
getMatrix(int, int, int[]) - Method in class Jama.Matrix
Get a submatrix.
getMatrix(int[], int, int) - Method in class Jama.Matrix
Get a submatrix.
getPivot() - Method in class Jama.LUDecomposition
Return pivot permutation vector
getQ() - Method in class Jama.QRDecomposition
Generate and return the (economy-sized) orthogonal factor
getR() - Method in class Jama.QRDecomposition
Return the upper triangular factor
getRealEigenvalues() - Method in class Jama.EigenvalueDecomposition
Return the real parts of the eigenvalues
getRowDimension() - Method in class Jama.FloatMatrix
Get row dimension.
getRowDimension() - Method in class Jama.Matrix
Get row dimension.
getRowPackedCopy() - Method in class Jama.FloatMatrix
Make a one-dimensional row packed copy of the internal array.
getRowPackedCopy() - Method in class Jama.Matrix
Make a one-dimensional row packed copy of the internal array.
getS() - Method in class Jama.SingularValueDecomposition
Return the diagonal matrix of singular values
getSingularValues() - Method in class Jama.SingularValueDecomposition
Return the one-dimensional array of singular values
getU() - Method in class Jama.LUDecomposition
Return upper triangular factor
getU() - Method in class Jama.SingularValueDecomposition
Return the left singular vectors
getV() - Method in class Jama.EigenvalueDecomposition
Return the eigenvector matrix
getV() - Method in class Jama.SingularValueDecomposition
Return the right singular vectors

H

hashCode() - Method in class Jama.FloatMatrix
 
hashCode() - Method in class Jama.Matrix
 
hypot(double, double) - Static method in class Jama.util.Maths
sqrt(a^2 + b^2) without under/overflow.

I

identity(int, int) - Static method in class Jama.FloatMatrix
Generate identity matrix
identity(int, int) - Static method in class Jama.Matrix
Generate identity matrix
inverse() - Method in class Jama.Matrix
Matrix inverse or pseudoinverse
isFullRank() - Method in class Jama.QRDecomposition
Is the matrix full rank?
isNonsingular() - Method in class Jama.LUDecomposition
Is the matrix nonsingular?
isSPD() - Method in class Jama.CholeskyDecomposition
Is the matrix symmetric and positive definite?

J

Jama - package Jama
 
Jama.util - package Jama.util
 

L

lu() - Method in class Jama.Matrix
LU Decomposition
LUDecomposition - Class in Jama
LU Decomposition.
LUDecomposition(Matrix) - Constructor for class Jama.LUDecomposition
LU Decomposition Structure to access L, U and piv.

M

Maths - Class in Jama.util
 
Maths() - Constructor for class Jama.util.Maths
 
Matrix - Class in Jama
Jama = Java Matrix class.
Matrix(int, int) - Constructor for class Jama.Matrix
Construct an m-by-n matrix of zeros.
Matrix(int, int, double) - Constructor for class Jama.Matrix
Construct an m-by-n constant matrix.
Matrix(double[][]) - Constructor for class Jama.Matrix
Construct a matrix from a 2-D array.
Matrix(double[][], int, int) - Constructor for class Jama.Matrix
Construct a matrix quickly without checking arguments.
Matrix(double[], int) - Constructor for class Jama.Matrix
Construct a matrix from a one-dimensional packed array
MatrixReader - Class in Jama.util
Reads a Matrix from a Reader
MatrixReader(Reader) - Constructor for class Jama.util.MatrixReader
 
MatrixWriter - Class in Jama.util
Writes a Matrix to a specified stream
MatrixWriter(OutputStream) - Constructor for class Jama.util.MatrixWriter
 
MatrixWriter(Writer) - Constructor for class Jama.util.MatrixWriter
 
minus(FloatMatrix) - Method in class Jama.FloatMatrix
C = A - B
minus(Matrix) - Method in class Jama.Matrix
C = A - B
minusEquals(FloatMatrix) - Method in class Jama.FloatMatrix
A = A - B
minusEquals(Matrix) - Method in class Jama.Matrix
A = A - B

N

norm1() - Method in class Jama.FloatMatrix
One norm
norm1() - Method in class Jama.Matrix
One norm
norm2() - Method in class Jama.Matrix
Two norm
norm2() - Method in class Jama.SingularValueDecomposition
Two norm
normF() - Method in class Jama.Matrix
Frobenius norm
normInf() - Method in class Jama.FloatMatrix
Infinity norm
normInf() - Method in class Jama.Matrix
Infinity norm

P

plus(FloatMatrix) - Method in class Jama.FloatMatrix
C = A + B
plus(Matrix) - Method in class Jama.Matrix
C = A + B
plusEquals(FloatMatrix) - Method in class Jama.FloatMatrix
A = A + B
plusEquals(Matrix) - Method in class Jama.Matrix
A = A + B
print(int, int) - Method in class Jama.FloatMatrix
Print the matrix to stdout.
print(PrintWriter, int, int) - Method in class Jama.FloatMatrix
Print the matrix to the output stream.
print(NumberFormat, int) - Method in class Jama.FloatMatrix
Print the matrix to stdout.
print(PrintWriter, NumberFormat, int) - Method in class Jama.FloatMatrix
Print the matrix to the output stream.
print(int, int) - Method in class Jama.Matrix
Print the matrix to stdout.
print(PrintWriter, int, int) - Method in class Jama.Matrix
Print the matrix to the output stream.
print(NumberFormat, int) - Method in class Jama.Matrix
Print the matrix to stdout.
print(PrintWriter, NumberFormat, int) - Method in class Jama.Matrix
Print the matrix to the output stream.

Q

qr() - Method in class Jama.Matrix
QR Decomposition
QRDecomposition - Class in Jama
QR Decomposition.
QRDecomposition(Matrix) - Constructor for class Jama.QRDecomposition
QR Decomposition, computed by Householder reflections.

R

random(int, int) - Static method in class Jama.FloatMatrix
Generate matrix with random elements
random(int, int) - Static method in class Jama.Matrix
Generate matrix with random elements
rank() - Method in class Jama.Matrix
Matrix rank
rank() - Method in class Jama.SingularValueDecomposition
Effective numerical matrix rank
read(BufferedReader) - Static method in class Jama.Matrix
Read a matrix from a stream.
readMatrix() - Method in class Jama.util.MatrixReader
 

S

set(int, int, float) - Method in class Jama.FloatMatrix
Set a single element.
set(int, int, double) - Method in class Jama.Matrix
Set a single element.
setDigits(int) - Method in class Jama.util.MatrixWriter
 
setFloatMatrix(int, int, int, int, FloatMatrix) - Method in class Jama.FloatMatrix
Set a submatrix.
setFloatMatrix(int[], int[], FloatMatrix) - Method in class Jama.FloatMatrix
Set a submatrix.
setFloatMatrix(int[], int, int, FloatMatrix) - Method in class Jama.FloatMatrix
Set a submatrix.
setFloatMatrix(int, int, int[], FloatMatrix) - Method in class Jama.FloatMatrix
Set a submatrix.
setFormatter(NumberFormat) - Method in class Jama.util.MatrixWriter
 
setMatrix(int, int, int, int, Matrix) - Method in class Jama.Matrix
Set a submatrix.
setMatrix(int[], int[], Matrix) - Method in class Jama.Matrix
Set a submatrix.
setMatrix(int[], int, int, Matrix) - Method in class Jama.Matrix
Set a submatrix.
setMatrix(int, int, int[], Matrix) - Method in class Jama.Matrix
Set a submatrix.
setWidth(int) - Method in class Jama.util.MatrixWriter
 
SingularValueDecomposition - Class in Jama
Singular Value Decomposition.
SingularValueDecomposition(Matrix) - Constructor for class Jama.SingularValueDecomposition
Construct the singular value decomposition Structure to access U, S and V.
solve(Matrix) - Method in class Jama.CholeskyDecomposition
Solve A*X = B
solve(Matrix) - Method in class Jama.LUDecomposition
Solve A*X = B
solve(Matrix) - Method in class Jama.Matrix
Solve A*X = B
solve(Matrix) - Method in class Jama.QRDecomposition
Least squares solution of A*X = B
solveTranspose(Matrix) - Method in class Jama.Matrix
Solve X*A = B, which is also A'*X' = B'
svd() - Method in class Jama.Matrix
Singular Value Decomposition

T

times(float) - Method in class Jama.FloatMatrix
Multiply a matrix by a scalar, C = s*A
times(FloatMatrix) - Method in class Jama.FloatMatrix
Linear algebraic matrix multiplication, A * B
times(double) - Method in class Jama.Matrix
Multiply a matrix by a scalar, C = s*A
times(Matrix) - Method in class Jama.Matrix
Linear algebraic matrix multiplication, A * B
timesColumnVector(double[]) - Method in class Jama.Matrix
Calculates v*A = C
A is this.
timesEquals(float) - Method in class Jama.FloatMatrix
Multiply a matrix by a scalar in place, A = s*A
timesEquals(double) - Method in class Jama.Matrix
Multiply a matrix by a scalar in place, A = s*A
timesRowVector(double[]) - Method in class Jama.Matrix
Calculates v*A = C
A is this.
toMatrix() - Method in class Jama.FloatMatrix
Note: This method creates a Matrix object which needs almost doubled memory size.
toString(Matrix, int, int) - Static method in class Jama.util.MatrixWriter
Generates a string representation of the Matrix.
trace() - Method in class Jama.FloatMatrix
FloatMatrix trace.
trace() - Method in class Jama.Matrix
Matrix trace.
transpose() - Method in class Jama.FloatMatrix
FloatMatrix transpose.
transpose() - Method in class Jama.Matrix
Matrix transpose.

U

uminus() - Method in class Jama.FloatMatrix
Unary minus
uminus() - Method in class Jama.Matrix
Unary minus

W

writeMatrix(Matrix) - Method in class Jama.util.MatrixWriter
Writes the given matrix.
writeMatrix(FloatMatrix) - Method in class Jama.util.MatrixWriter
Writes the given matrix.
A C D E F G H I J L M N P Q R S T U W 

Copyright © 2012. All Rights Reserved.