Class MatrixFunctionTable

java.lang.Object
com.singularsys.jep.FunctionTable
com.singularsys.extensions.matrix.MatrixFunctionTable
All Implemented Interfaces:
JepComponent, Serializable

public class MatrixFunctionTable extends FunctionTable
A function table with some matrix functions. Defines
  • det - the determinate of a matrix
  • trace - the trace of a matrix
  • trans - transpose of a matrix
  • id - creates an identity matrix id(3) is a 3 by 3 matrix
  • zeroMat - creates a matrix of zeros zeroMat(3,2) creates a 3 by 2 matrix
  • zeroVec - creates a vector of zeros zeroVec(3) creates a 3 element vector
  • size - finds the length of a vector or the vector with rows and columns of a matrix
  • inv(m) - find the inverse of m
  • v=solve(m,u) - find solution of m * v = u
Author:
Richard Morris
See Also: