Uses of Interface
org.geotools.referencing.operation.matrix.XMatrix
-
Packages that use XMatrix Package Description org.geotools.referencing.datum Datum implementation.org.geotools.referencing.operation.matrix Matrix implementations on top of thejavax.vecmath
package. -
-
Uses of XMatrix in org.geotools.referencing.datum
Methods in org.geotools.referencing.datum that return XMatrix Modifier and Type Method Description XMatrix
BursaWolfParameters. getAffineTransform()
Returns an affine transform that can be used to define this Bursa Wolf transformation. -
Uses of XMatrix in org.geotools.referencing.operation.matrix
Classes in org.geotools.referencing.operation.matrix that implement XMatrix Modifier and Type Class Description class
GeneralMatrix
A two dimensional array of numbers.class
Matrix1
class
Matrix2
class
Matrix3
class
Matrix4
Methods in org.geotools.referencing.operation.matrix that return XMatrix Modifier and Type Method Description static XMatrix
MatrixFactory. create(int size)
Creates a square identity matrix of sizesize
×size
.static XMatrix
MatrixFactory. create(int numRow, int numCol)
Creates a matrix of sizenumRow
×numCol
.static XMatrix
MatrixFactory. create(Matrix matrix)
Creates a new matrix which is a copy of the specified matrix.Methods in org.geotools.referencing.operation.matrix with parameters of type XMatrix Modifier and Type Method Description void
GeneralMatrix. add(double scalar, XMatrix matrix)
void
GeneralMatrix. add(XMatrix matrix)
void
GeneralMatrix. add(XMatrix matrix1, XMatrix matrix2)
void
Matrix1. add(double scalar, XMatrix matrix)
void
Matrix1. add(XMatrix matrix)
void
Matrix1. add(XMatrix matrix1, XMatrix matrix2)
void
Matrix2. add(double scalar, XMatrix matrix)
void
Matrix2. add(XMatrix matrix)
void
Matrix2. add(XMatrix matrix1, XMatrix matrix2)
void
Matrix3. add(double scalar, XMatrix matrix)
void
Matrix3. add(XMatrix matrix)
void
Matrix3. add(XMatrix matrix1, XMatrix matrix2)
void
XMatrix. add(double scalar, XMatrix matrix)
Set to the scalar addition ofscalar+matrix
void
XMatrix. add(XMatrix matrix)
Set to the matrix addition ofthis+matrix
.void
XMatrix. add(XMatrix matrix1, XMatrix matrix2)
Set to the matrix addition ofmatrix1+matrix2
.
-