Serialized Form
-
Package org.ejml
-
Exception org.ejml.MatrixDimensionException
class MatrixDimensionException extends RuntimeException implements Serializable
-
-
Package org.ejml.data
-
Class org.ejml.data.BMatrixRMaj
class BMatrixRMaj extends Object implements Serializable-
Serialized Fields
-
data
boolean[] data
1D row-major array for storing theboolean matrix -
numCols
int numCols
Number of columns in the matrix. -
numRows
int numRows
Number of rows in the matrix.
-
-
-
Class org.ejml.data.CMatrixD1
class CMatrixD1 extends Object implements Serializable-
Serialized Fields
-
data
float[] data
Where the raw data for the matrix is stored. The format is type dependent. -
numCols
int numCols
Number of columns in the matrix. -
numRows
int numRows
Number of rows in the matrix.
-
-
-
Class org.ejml.data.CMatrixRMaj
class CMatrixRMaj extends CMatrixD1 implements Serializable -
Class org.ejml.data.DMatrix1Row
class DMatrix1Row extends DMatrixD1 implements Serializable -
Class org.ejml.data.DMatrix2
class DMatrix2 extends Object implements Serializable-
Serialized Fields
-
a1
double a1
-
a2
double a2
-
-
-
Class org.ejml.data.DMatrix2x2
class DMatrix2x2 extends Object implements Serializable-
Serialized Fields
-
a11
double a11
-
a12
double a12
-
a21
double a21
-
a22
double a22
-
-
-
Class org.ejml.data.DMatrix3
class DMatrix3 extends Object implements Serializable-
Serialized Fields
-
a1
double a1
-
a2
double a2
-
a3
double a3
-
-
-
Class org.ejml.data.DMatrix3x3
class DMatrix3x3 extends Object implements Serializable-
Serialized Fields
-
a11
double a11
-
a12
double a12
-
a13
double a13
-
a21
double a21
-
a22
double a22
-
a23
double a23
-
a31
double a31
-
a32
double a32
-
a33
double a33
-
-
-
Class org.ejml.data.DMatrix4
class DMatrix4 extends Object implements Serializable-
Serialized Fields
-
a1
double a1
-
a2
double a2
-
a3
double a3
-
a4
double a4
-
-
-
Class org.ejml.data.DMatrix4x4
class DMatrix4x4 extends Object implements Serializable-
Serialized Fields
-
a11
double a11
-
a12
double a12
-
a13
double a13
-
a14
double a14
-
a21
double a21
-
a22
double a22
-
a23
double a23
-
a24
double a24
-
a31
double a31
-
a32
double a32
-
a33
double a33
-
a34
double a34
-
a41
double a41
-
a42
double a42
-
a43
double a43
-
a44
double a44
-
-
-
Class org.ejml.data.DMatrix5
class DMatrix5 extends Object implements Serializable-
Serialized Fields
-
a1
double a1
-
a2
double a2
-
a3
double a3
-
a4
double a4
-
a5
double a5
-
-
-
Class org.ejml.data.DMatrix5x5
class DMatrix5x5 extends Object implements Serializable-
Serialized Fields
-
a11
double a11
-
a12
double a12
-
a13
double a13
-
a14
double a14
-
a15
double a15
-
a21
double a21
-
a22
double a22
-
a23
double a23
-
a24
double a24
-
a25
double a25
-
a31
double a31
-
a32
double a32
-
a33
double a33
-
a34
double a34
-
a35
double a35
-
a41
double a41
-
a42
double a42
-
a43
double a43
-
a44
double a44
-
a45
double a45
-
a51
double a51
-
a52
double a52
-
a53
double a53
-
a54
double a54
-
a55
double a55
-
-
-
Class org.ejml.data.DMatrix6
class DMatrix6 extends Object implements Serializable-
Serialized Fields
-
a1
double a1
-
a2
double a2
-
a3
double a3
-
a4
double a4
-
a5
double a5
-
a6
double a6
-
-
-
Class org.ejml.data.DMatrix6x6
class DMatrix6x6 extends Object implements Serializable-
Serialized Fields
-
a11
double a11
-
a12
double a12
-
a13
double a13
-
a14
double a14
-
a15
double a15
-
a16
double a16
-
a21
double a21
-
a22
double a22
-
a23
double a23
-
a24
double a24
-
a25
double a25
-
a26
double a26
-
a31
double a31
-
a32
double a32
-
a33
double a33
-
a34
double a34
-
a35
double a35
-
a36
double a36
-
a41
double a41
-
a42
double a42
-
a43
double a43
-
a44
double a44
-
a45
double a45
-
a46
double a46
-
a51
double a51
-
a52
double a52
-
a53
double a53
-
a54
double a54
-
a55
double a55
-
a56
double a56
-
a61
double a61
-
a62
double a62
-
a63
double a63
-
a64
double a64
-
a65
double a65
-
a66
double a66
-
-
-
Class org.ejml.data.DMatrixD1
class DMatrixD1 extends Object implements Serializable-
Serialized Fields
-
data
double[] data
Where the raw data for the matrix is stored. The format is type dependent. -
numCols
int numCols
Number of columns in the matrix. -
numRows
int numRows
Number of rows in the matrix.
-
-
-
Class org.ejml.data.DMatrixRBlock
class DMatrixRBlock extends DMatrixD1 implements Serializable-
Serialized Fields
-
blockLength
int blockLength
-
-
-
Class org.ejml.data.DMatrixRMaj
class DMatrixRMaj extends DMatrix1Row implements Serializable -
Class org.ejml.data.DMatrixSparseCSC
class DMatrixSparseCSC extends Object implements Serializable-
Serialized Fields
-
col_idx
int[] col_idx
Stores the range of indexes in the non-zero lists that belong to each column. Column 'i' corresponds to indexes col_idx[i] to col_idx[i+1]-1, inclusive. -
indicesSorted
boolean indicesSorted
Flag that's used to indicate of the row indices are sorted or not. -
numCols
int numCols
Number of columns in the matrix -
numRows
int numRows
Number of rows in the matrix -
nz_length
int nz_length
Length of data. Number of non-zero values in the matrix -
nz_rows
int[] nz_rows
Specifies which row a specific non-zero value corresponds to. If they are sorted or not with in each column is specified by theDMatrixSparseCSC.indicesSorted
flag. -
nz_values
double[] nz_values
Storage for non-zero values. Only valid up to length-1.
-
-
-
Class org.ejml.data.DMatrixSparseTriplet
class DMatrixSparseTriplet extends Object implements Serializable-
Serialized Fields
-
numCols
int numCols
Number of columns in the matrix -
numRows
int numRows
Number of rows in the matrix -
nz_length
int nz_length
Number of non-zero elements in this matrix -
nz_rowcol
IGrowArray nz_rowcol
Storage for row and column coordinate for non-zero elements -
nz_value
DGrowArray nz_value
Storage for value of a non-zero element
-
-
-
Class org.ejml.data.FMatrix1Row
class FMatrix1Row extends FMatrixD1 implements Serializable -
Class org.ejml.data.FMatrix2
class FMatrix2 extends Object implements Serializable-
Serialized Fields
-
a1
float a1
-
a2
float a2
-
-
-
Class org.ejml.data.FMatrix2x2
class FMatrix2x2 extends Object implements Serializable-
Serialized Fields
-
a11
float a11
-
a12
float a12
-
a21
float a21
-
a22
float a22
-
-
-
Class org.ejml.data.FMatrix3
class FMatrix3 extends Object implements Serializable-
Serialized Fields
-
a1
float a1
-
a2
float a2
-
a3
float a3
-
-
-
Class org.ejml.data.FMatrix3x3
class FMatrix3x3 extends Object implements Serializable-
Serialized Fields
-
a11
float a11
-
a12
float a12
-
a13
float a13
-
a21
float a21
-
a22
float a22
-
a23
float a23
-
a31
float a31
-
a32
float a32
-
a33
float a33
-
-
-
Class org.ejml.data.FMatrix4
class FMatrix4 extends Object implements Serializable-
Serialized Fields
-
a1
float a1
-
a2
float a2
-
a3
float a3
-
a4
float a4
-
-
-
Class org.ejml.data.FMatrix4x4
class FMatrix4x4 extends Object implements Serializable-
Serialized Fields
-
a11
float a11
-
a12
float a12
-
a13
float a13
-
a14
float a14
-
a21
float a21
-
a22
float a22
-
a23
float a23
-
a24
float a24
-
a31
float a31
-
a32
float a32
-
a33
float a33
-
a34
float a34
-
a41
float a41
-
a42
float a42
-
a43
float a43
-
a44
float a44
-
-
-
Class org.ejml.data.FMatrix5
class FMatrix5 extends Object implements Serializable-
Serialized Fields
-
a1
float a1
-
a2
float a2
-
a3
float a3
-
a4
float a4
-
a5
float a5
-
-
-
Class org.ejml.data.FMatrix5x5
class FMatrix5x5 extends Object implements Serializable-
Serialized Fields
-
a11
float a11
-
a12
float a12
-
a13
float a13
-
a14
float a14
-
a15
float a15
-
a21
float a21
-
a22
float a22
-
a23
float a23
-
a24
float a24
-
a25
float a25
-
a31
float a31
-
a32
float a32
-
a33
float a33
-
a34
float a34
-
a35
float a35
-
a41
float a41
-
a42
float a42
-
a43
float a43
-
a44
float a44
-
a45
float a45
-
a51
float a51
-
a52
float a52
-
a53
float a53
-
a54
float a54
-
a55
float a55
-
-
-
Class org.ejml.data.FMatrix6
class FMatrix6 extends Object implements Serializable-
Serialized Fields
-
a1
float a1
-
a2
float a2
-
a3
float a3
-
a4
float a4
-
a5
float a5
-
a6
float a6
-
-
-
Class org.ejml.data.FMatrix6x6
class FMatrix6x6 extends Object implements Serializable-
Serialized Fields
-
a11
float a11
-
a12
float a12
-
a13
float a13
-
a14
float a14
-
a15
float a15
-
a16
float a16
-
a21
float a21
-
a22
float a22
-
a23
float a23
-
a24
float a24
-
a25
float a25
-
a26
float a26
-
a31
float a31
-
a32
float a32
-
a33
float a33
-
a34
float a34
-
a35
float a35
-
a36
float a36
-
a41
float a41
-
a42
float a42
-
a43
float a43
-
a44
float a44
-
a45
float a45
-
a46
float a46
-
a51
float a51
-
a52
float a52
-
a53
float a53
-
a54
float a54
-
a55
float a55
-
a56
float a56
-
a61
float a61
-
a62
float a62
-
a63
float a63
-
a64
float a64
-
a65
float a65
-
a66
float a66
-
-
-
Class org.ejml.data.FMatrixD1
class FMatrixD1 extends Object implements Serializable-
Serialized Fields
-
data
float[] data
Where the raw data for the matrix is stored. The format is type dependent. -
numCols
int numCols
Number of columns in the matrix. -
numRows
int numRows
Number of rows in the matrix.
-
-
-
Class org.ejml.data.FMatrixRBlock
class FMatrixRBlock extends FMatrixD1 implements Serializable-
Serialized Fields
-
blockLength
int blockLength
-
-
-
Class org.ejml.data.FMatrixRMaj
class FMatrixRMaj extends FMatrix1Row implements Serializable -
Class org.ejml.data.FMatrixSparseCSC
class FMatrixSparseCSC extends Object implements Serializable-
Serialized Fields
-
col_idx
int[] col_idx
Stores the range of indexes in the non-zero lists that belong to each column. Column 'i' corresponds to indexes col_idx[i] to col_idx[i+1]-1, inclusive. -
indicesSorted
boolean indicesSorted
Flag that's used to indicate of the row indices are sorted or not. -
numCols
int numCols
Number of columns in the matrix -
numRows
int numRows
Number of rows in the matrix -
nz_length
int nz_length
Length of data. Number of non-zero values in the matrix -
nz_rows
int[] nz_rows
Specifies which row a specific non-zero value corresponds to. If they are sorted or not with in each column is specified by theFMatrixSparseCSC.indicesSorted
flag. -
nz_values
float[] nz_values
Storage for non-zero values. Only valid up to length-1.
-
-
-
Class org.ejml.data.FMatrixSparseTriplet
class FMatrixSparseTriplet extends Object implements Serializable-
Serialized Fields
-
numCols
int numCols
Number of columns in the matrix -
numRows
int numRows
Number of rows in the matrix -
nz_length
int nz_length
Number of non-zero elements in this matrix -
nz_rowcol
IGrowArray nz_rowcol
Storage for row and column coordinate for non-zero elements -
nz_value
FGrowArray nz_value
Storage for value of a non-zero element
-
-
-
Exception org.ejml.data.SingularMatrixException
class SingularMatrixException extends RuntimeException implements Serializable -
Class org.ejml.data.ZMatrixD1
class ZMatrixD1 extends Object implements Serializable-
Serialized Fields
-
data
double[] data
Where the raw data for the matrix is stored. The format is type dependent. -
numCols
int numCols
Number of columns in the matrix. -
numRows
int numRows
Number of rows in the matrix.
-
-
-
Class org.ejml.data.ZMatrixRMaj
class ZMatrixRMaj extends ZMatrixD1 implements Serializable
-
-
Package org.ejml.dense.row
-
Class org.ejml.dense.row.DMatrixComponent
class DMatrixComponent extends JPanel implements Serializable-
Serialized Fields
-
image
BufferedImage image
-
-
-
Class org.ejml.dense.row.FMatrixComponent
class FMatrixComponent extends JPanel implements Serializable-
Serialized Fields
-
image
BufferedImage image
-
-
-
-
Package org.ejml.equation
-
Exception org.ejml.equation.ParseError
class ParseError extends RuntimeException implements Serializable
-
-
Package org.ejml.simple
-
Exception org.ejml.simple.ConvertToDenseException
class ConvertToDenseException extends RuntimeException implements Serializable -
Exception org.ejml.simple.ConvertToImaginaryException
class ConvertToImaginaryException extends RuntimeException implements Serializable -
Class org.ejml.simple.SimpleBase
class SimpleBase extends Object implements Serializable- serialVersionUID:
- 2342556642L
-
Serialization Methods
-
readObject
- Throws:
IOException
ClassNotFoundException
-
-
Serialized Fields
-
mat
Matrix mat
Internal matrix which this is a wrapper around. -
ops
SimpleOperations ops
-
-
Class org.ejml.simple.SimpleMatrix
-
Exception org.ejml.simple.UnsupportedOperation
class UnsupportedOperation extends RuntimeException implements Serializable
-
-
Package org.ejml.simple.ops
-
Class org.ejml.simple.ops.SimpleOperations_CDRM
class SimpleOperations_CDRM extends Object implements Serializable -
Class org.ejml.simple.ops.SimpleOperations_DDRM
class SimpleOperations_DDRM extends Object implements Serializable -
Class org.ejml.simple.ops.SimpleOperations_DSCC
class SimpleOperations_DSCC extends Object implements Serializable -
Class org.ejml.simple.ops.SimpleOperations_FDRM
class SimpleOperations_FDRM extends Object implements Serializable -
Class org.ejml.simple.ops.SimpleOperations_FSCC
class SimpleOperations_FSCC extends Object implements Serializable -
Class org.ejml.simple.ops.SimpleOperations_ZDRM
class SimpleOperations_ZDRM extends Object implements Serializable
-
-
Package pabeles.concurrency
-
Class pabeles.concurrency.IntObjectTask
-
Serialized Fields
-
consumer
IntObjectConsumer<T> consumer
-
data
T data
-
idx0
int idx0
-
idx1
int idx1
-
maxThreads
int maxThreads
-
next
@Nullable IntObjectTask<T> next
-
step
int step
-
whichThread
int whichThread
-
workspace
GrowArray<T> workspace
-
-
-
Class pabeles.concurrency.IntOperatorTask
-
Serialized Fields
-
consumer
IntProducerNumber consumer
-
master
boolean master
-
max
int max
-
next
@Nullable IntOperatorTask next
-
primitiveType
Class primitiveType
-
result
Number result
-
value
int value
-
-
-
Class pabeles.concurrency.IntOperatorTask.Max
class Max extends IntOperatorTask implements Serializable -
Class pabeles.concurrency.IntOperatorTask.Min
class Min extends IntOperatorTask implements Serializable -
Class pabeles.concurrency.IntOperatorTask.Sum
class Sum extends IntOperatorTask implements Serializable -
Class pabeles.concurrency.IntRangeObjectTask
-
Serialized Fields
-
consumer
IntRangeObjectConsumer<T> consumer
-
max
int max
-
min
int min
-
next
@Nullable IntRangeObjectTask<T> next
-
step
int step
-
stepLength
int stepLength
-
workspace
GrowArray<T> workspace
-
-
-
Class pabeles.concurrency.IntRangeTask
-
Serialized Fields
-
consumer
IntRangeConsumer consumer
-
max
int max
-
min
int min
-
next
IntRangeTask next
-
step
int step
-
stepLength
int stepLength
-
-
-