Uses of Class
org.strbio.math.FMatrix

Packages that use FMatrix
org.strbio.math These classes perform functions related to mathematics and statistics. 
 

Uses of FMatrix in org.strbio.math
 

Methods in org.strbio.math that return FMatrix
static FMatrix FMatrix.add(FMatrix a, FMatrix b)
          Adds two FMatrix's and returns a new FMatrix containing the sum.
static FMatrix FMatrix.divide(FMatrix a, int b)
          Divides a FMatrix by a float, and returns a new FMatrix containing the result.
 FMatrix FMatrix.inverse()
          Returns the inverse of this matrix.
static FMatrix FMatrix.makeInverseTransform(float x, float y, float z, float phi, float theta, float psi)
          Return an inverse transformation matrix given 3 transformation coordinates and 3 Euler rotation angles.
static FMatrix FMatrix.makeTransform(float x, float y, float z, float phi, float theta, float psi)
          Return a transformation matrix given 3 transformation coordinates and 3 Euler rotation angles.
static FMatrix FMatrix.multiply(float b, FMatrix a)
          Multiplies a FMatrix by a float and returns a new FMatrix containing the result.
 FMatrix FMatrix.multiply(FMatrix x)
          Multiples this FMatrix by another FMatrix, and returns another FMatrix containing the result.
static FMatrix FMatrix.multiply(FMatrix a, float b)
          Multiplies a FMatrix by a float and returns a new FMatrix containing the result.
static FMatrix FMatrix.multiply(FMatrix a, FMatrix b)
          Multiplies two FMatrix's, and returns another FMatrix containing the result.
static FMatrix FMatrix.subtract(FMatrix a, FMatrix b)
          Subtracts one FMatrix's from another returns a new FMatrix containing the difference.
 FMatrix FMatrix.transpose()
          Returns the transpose of this FMatrix.
 

Methods in org.strbio.math with parameters of type FMatrix
 void FMatrix.add(FMatrix x)
          Adds another FMatrix to this one.
static FMatrix FMatrix.add(FMatrix a, FMatrix b)
          Adds two FMatrix's and returns a new FMatrix containing the sum.
 float FMatrix.covar(FMatrix y)
          Returns the covariance of values in this matrix with those in another matrix.
static FMatrix FMatrix.divide(FMatrix a, int b)
          Divides a FMatrix by a float, and returns a new FMatrix containing the result.
static FMatrix FMatrix.multiply(float b, FMatrix a)
          Multiplies a FMatrix by a float and returns a new FMatrix containing the result.
 FMatrix FMatrix.multiply(FMatrix x)
          Multiples this FMatrix by another FMatrix, and returns another FMatrix containing the result.
 void FVector.multiply(FMatrix x)
          Multplies this FVector by a FMatrix.
static FMatrix FMatrix.multiply(FMatrix a, float b)
          Multiplies a FMatrix by a float and returns a new FMatrix containing the result.
static FMatrix FMatrix.multiply(FMatrix a, FMatrix b)
          Multiplies two FMatrix's, and returns another FMatrix containing the result.
static FVector FVector.multiply(FMatrix b, FVector a)
          Multplies a FVector by a FMatrix, and returns a new FVector with the result.
static FVector FVector.multiply(FVector a, FMatrix b)
          Multplies a FVector by a FMatrix, and returns a new FVector with the result.
 float FMatrix.pearson(FMatrix y)
          Returns the Pearson correlation coefficient R of values in this matrix with values in another matrix.
 void FMatrix.subtract(FMatrix x)
          Subtracts another FMatrix from this one.
static FMatrix FMatrix.subtract(FMatrix a, FMatrix b)
          Subtracts one FMatrix's from another returns a new FMatrix containing the difference.
 void FVector.transform(FMatrix x)
          transforms this vector using a transformation FMatrix.
 

Constructors in org.strbio.math with parameters of type FMatrix
FMatrix(FMatrix x)
          copies another FMatrix.