Uses of Class
pulse.math.linear.RectangularMatrix
-
Packages that use RectangularMatrix Package Description pulse.math.linear A linear algebra package based mostly on the EJML library.pulse.search.direction Provides a list ofPathSolver
s and associated classes, which are used to determine the direction of the minimum of a specificSearchTask
using an iterative approach. -
-
Uses of RectangularMatrix in pulse.math.linear
Subclasses of RectangularMatrix in pulse.math.linear Modifier and Type Class Description class
SquareMatrix
The matrix class.Methods in pulse.math.linear that return RectangularMatrix Modifier and Type Method Description static RectangularMatrix
Matrices. createMatrix(double[][] data)
Creates a square matrix out ofdata
.RectangularMatrix
RectangularMatrix. multiply(double f)
Scales thisMatrix
byf
, which results in element-wise multiplication byf
.RectangularMatrix
RectangularMatrix. multiply(RectangularMatrix m)
PerformsMatrix
multiplication.RectangularMatrix
RectangularMatrix. subtract(RectangularMatrix m)
Performs an element-wise subtraction ofm
fromthis
if these matrices have matching dimensions.RectangularMatrix
RectangularMatrix. sum(RectangularMatrix m)
Performs an element-wise summation ifthis
andm
have matching dimensions.RectangularMatrix
RectangularMatrix. transpose()
Transposes thisMatrix
, i.e.Methods in pulse.math.linear with parameters of type RectangularMatrix Modifier and Type Method Description static SquareMatrix
SquareMatrix. asSquareMatrix(RectangularMatrix m)
boolean
RectangularMatrix. dimensionsMatch(RectangularMatrix m)
Checks if the dimension ofthis Matrix
andm
match, i.e.RectangularMatrix
RectangularMatrix. multiply(RectangularMatrix m)
PerformsMatrix
multiplication.RectangularMatrix
RectangularMatrix. subtract(RectangularMatrix m)
Performs an element-wise subtraction ofm
fromthis
if these matrices have matching dimensions.RectangularMatrix
RectangularMatrix. sum(RectangularMatrix m)
Performs an element-wise summation ifthis
andm
have matching dimensions. -
Uses of RectangularMatrix in pulse.search.direction
Methods in pulse.search.direction that return RectangularMatrix Modifier and Type Method Description RectangularMatrix
LMOptimiser. jacobian(GeneralTask task)
Calculates the Jacobian of the model function given as a discrete set of time-signal values.
-