|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Matrix | |
org.eclipse.birt.chart.computation | This is a placeholder file for the org.eclipse.birt.chart.computation package. |
org.eclipse.birt.chart.util | Provides miscellaneous classes associated with data types and extension lookup services. |
Uses of Matrix in org.eclipse.birt.chart.computation |
Methods in org.eclipse.birt.chart.computation with parameters of type Matrix | |
void |
Vector.multiply(Matrix m)
|
Vector |
Vector.getMultiply(Matrix m)
|
void |
Object3D.transform(Matrix m)
|
Uses of Matrix in org.eclipse.birt.chart.util |
Methods in org.eclipse.birt.chart.util that return Matrix | |
Matrix |
QRDecomposition.getH()
Return the Householder vectors |
Matrix |
QRDecomposition.getR()
Return the upper triangular factor |
Matrix |
QRDecomposition.getQ()
Generate and return the (economy-sized) orthogonal factor |
Matrix |
QRDecomposition.solve(Matrix B)
Least squares solution of A*X = B |
static Matrix |
Matrix.constructWithCopy(double[][] A)
Construct a matrix from a copy of a 2-D array. |
Matrix |
Matrix.copy()
Make a deep copy of a matrix |
Matrix |
Matrix.getMatrix(int i0,
int i1,
int j0,
int j1)
Get a submatrix. |
Matrix |
Matrix.getMatrix(int[] r,
int[] c)
Get a submatrix. |
Matrix |
Matrix.getMatrix(int i0,
int i1,
int[] c)
Get a submatrix. |
Matrix |
Matrix.getMatrix(int[] r,
int j0,
int j1)
Get a submatrix. |
Matrix |
Matrix.transpose()
Matrix transpose. |
Matrix |
Matrix.uminus()
Unary minus |
Matrix |
Matrix.plus(Matrix B)
C = A + B |
Matrix |
Matrix.plusEquals(Matrix B)
A = A + B |
Matrix |
Matrix.minus(Matrix B)
C = A - B |
Matrix |
Matrix.minusEquals(Matrix B)
A = A - B |
Matrix |
Matrix.arrayTimes(Matrix B)
Element-by-element multiplication, C = A.*B |
Matrix |
Matrix.arrayTimesEquals(Matrix B)
Element-by-element multiplication in place, A = A.*B |
Matrix |
Matrix.arrayRightDivide(Matrix B)
Element-by-element right division, C = A./B |
Matrix |
Matrix.arrayRightDivideEquals(Matrix B)
Element-by-element right division in place, A = A./B |
Matrix |
Matrix.arrayLeftDivide(Matrix B)
Element-by-element left division, C = A.\B |
Matrix |
Matrix.arrayLeftDivideEquals(Matrix B)
Element-by-element left division in place, A = A.\B |
Matrix |
Matrix.times(double s)
Multiply a matrix by a scalar, C = s*A |
Matrix |
Matrix.timesEquals(double s)
Multiply a matrix by a scalar in place, A = s*A |
Matrix |
Matrix.times(Matrix B)
Linear algebraic matrix multiplication, A * B |
Matrix |
Matrix.solve(Matrix B)
Singular Value Decomposition |
Matrix |
Matrix.solveTranspose(Matrix B)
Solve X*A = B, which is also A'*X' = B' |
Matrix |
Matrix.inverse()
Matrix inverse or pseudoinverse |
static Matrix |
Matrix.random(int m,
int n)
Generate matrix with random elements |
static Matrix |
Matrix.identity(int m,
int n)
Generate identity matrix |
static Matrix |
Matrix.read(java.io.BufferedReader input)
Read a matrix from a stream. |
Matrix |
LUDecomposition.getL()
Return lower triangular factor |
Matrix |
LUDecomposition.getU()
Return upper triangular factor |
Matrix |
LUDecomposition.solve(Matrix B)
Solve A*X = B |
Methods in org.eclipse.birt.chart.util with parameters of type Matrix | |
Matrix |
QRDecomposition.solve(Matrix B)
Least squares solution of A*X = B |
void |
Matrix.setMatrix(int i0,
int i1,
int j0,
int j1,
Matrix X)
Set a submatrix. |
void |
Matrix.setMatrix(int[] r,
int[] c,
Matrix X)
Set a submatrix. |
void |
Matrix.setMatrix(int[] r,
int j0,
int j1,
Matrix X)
Set a submatrix. |
void |
Matrix.setMatrix(int i0,
int i1,
int[] c,
Matrix X)
Set a submatrix. |
Matrix |
Matrix.plus(Matrix B)
C = A + B |
Matrix |
Matrix.plusEquals(Matrix B)
A = A + B |
Matrix |
Matrix.minus(Matrix B)
C = A - B |
Matrix |
Matrix.minusEquals(Matrix B)
A = A - B |
Matrix |
Matrix.arrayTimes(Matrix B)
Element-by-element multiplication, C = A.*B |
Matrix |
Matrix.arrayTimesEquals(Matrix B)
Element-by-element multiplication in place, A = A.*B |
Matrix |
Matrix.arrayRightDivide(Matrix B)
Element-by-element right division, C = A./B |
Matrix |
Matrix.arrayRightDivideEquals(Matrix B)
Element-by-element right division in place, A = A./B |
Matrix |
Matrix.arrayLeftDivide(Matrix B)
Element-by-element left division, C = A.\B |
Matrix |
Matrix.arrayLeftDivideEquals(Matrix B)
Element-by-element left division in place, A = A.\B |
Matrix |
Matrix.times(Matrix B)
Linear algebraic matrix multiplication, A * B |
Matrix |
Matrix.solve(Matrix B)
Singular Value Decomposition |
Matrix |
Matrix.solveTranspose(Matrix B)
Solve X*A = B, which is also A'*X' = B' |
Matrix |
LUDecomposition.solve(Matrix B)
Solve A*X = B |
Constructors in org.eclipse.birt.chart.util with parameters of type Matrix | |
QRDecomposition(Matrix A)
QR Decomposition, computed by Householder reflections. |
|
LUDecomposition(Matrix A)
LU Decomposition |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |