|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Matrix | |
|---|---|
| org.faceless.graph.math | Contains "curves" which are plotted on AbstractLineGraph and subclasses. |
| Uses of Matrix in org.faceless.graph.math |
|---|
| Fields in org.faceless.graph.math declared as Matrix | |
|---|---|
static Matrix |
Spline.BSPLINE
Defines the basis matrix for a B-spline |
static Matrix |
Spline.CATMULLROM
Defines the basis matrix for a Catmull-Rom spline |
| Methods in org.faceless.graph.math that return Matrix | |
|---|---|
Matrix |
Matrix.add(Matrix m)
Return a new matrix that is the sum of this matrix and the specified matrix. |
Matrix |
Matrix.appendHorizontal(Matrix m)
Append the specified matrix to the current matrix by extending the number of columns in the current matrix |
Matrix |
Matrix.appendVertical(Matrix m)
Append the specified matrix to the current matrix by extending the number of columns in the current matrix |
Matrix |
Matrix.div(Matrix m)
Return a new matrix that is the result of this matrix divided by the specified matrix. |
Matrix |
Matrix.exchangeRows(int row1,
int row2)
Return a duplicate of the current matrix with the specified rows swapped |
static Matrix |
Matrix.identity(int ord)
Return a new Identity Matrix of the specified size |
Matrix |
Matrix.inverse()
Return the inverse of the current matrix |
Matrix |
Matrix.mul(double fac)
Return a new matrix that is the product of this matrix and the specified factor. |
Matrix |
Matrix.mul(Matrix m)
Return a new matrix that is the product of this matrix and the specified matrix. |
Matrix |
Matrix.pivot(int col,
int row)
Pivot the current matrix around the specified row and column |
Matrix |
Matrix.subMatrix(int col,
int row,
int numcols,
int numrows)
Return a subset of this matrix consisiting of just the specified columns and rows |
| Methods in org.faceless.graph.math with parameters of type Matrix | |
|---|---|
Matrix |
Matrix.add(Matrix m)
Return a new matrix that is the sum of this matrix and the specified matrix. |
Matrix |
Matrix.appendHorizontal(Matrix m)
Append the specified matrix to the current matrix by extending the number of columns in the current matrix |
Matrix |
Matrix.appendVertical(Matrix m)
Append the specified matrix to the current matrix by extending the number of columns in the current matrix |
Matrix |
Matrix.div(Matrix m)
Return a new matrix that is the result of this matrix divided by the specified matrix. |
Matrix |
Matrix.mul(Matrix m)
Return a new matrix that is the product of this matrix and the specified matrix. |
| Constructors in org.faceless.graph.math with parameters of type Matrix | |
|---|---|
Matrix(Matrix m)
Create a new Matrix that's a clone of the specified matrix |
|
Spline(Matrix matrix,
DataCurve d)
Return a new Spline curve of the specified type fitted to the supplied DataCurve. |
|
Spline(Matrix matrix,
double[] x,
double[] y)
Return a new Spline curve of the specified type fitted to the array of X and Y values supplied. |
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||