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 ofPathSolvers and associated classes, which are used to determine the direction of the minimum of a specificSearchTaskusing an iterative approach. -
-
Uses of RectangularMatrix in pulse.math.linear
Subclasses of RectangularMatrix in pulse.math.linear Modifier and Type Class Description classSquareMatrixThe matrix class.Methods in pulse.math.linear that return RectangularMatrix Modifier and Type Method Description static RectangularMatrixMatrices. createMatrix(double[][] data)Creates a square matrix out ofdata.RectangularMatrixRectangularMatrix. multiply(double f)Scales thisMatrixbyf, which results in element-wise multiplication byf.RectangularMatrixRectangularMatrix. multiply(RectangularMatrix m)PerformsMatrixmultiplication.RectangularMatrixRectangularMatrix. subtract(RectangularMatrix m)Performs an element-wise subtraction ofmfromthisif these matrices have matching dimensions.RectangularMatrixRectangularMatrix. sum(RectangularMatrix m)Performs an element-wise summation ifthisandmhave matching dimensions.RectangularMatrixRectangularMatrix. transpose()Transposes thisMatrix, i.e.Methods in pulse.math.linear with parameters of type RectangularMatrix Modifier and Type Method Description static SquareMatrixSquareMatrix. asSquareMatrix(RectangularMatrix m)booleanRectangularMatrix. dimensionsMatch(RectangularMatrix m)Checks if the dimension ofthis Matrixandmmatch, i.e.RectangularMatrixRectangularMatrix. multiply(RectangularMatrix m)PerformsMatrixmultiplication.RectangularMatrixRectangularMatrix. subtract(RectangularMatrix m)Performs an element-wise subtraction ofmfromthisif these matrices have matching dimensions.RectangularMatrixRectangularMatrix. sum(RectangularMatrix m)Performs an element-wise summation ifthisandmhave matching dimensions. -
Uses of RectangularMatrix in pulse.search.direction
Methods in pulse.search.direction that return RectangularMatrix Modifier and Type Method Description RectangularMatrixLMOptimiser. jacobian(GeneralTask task)Calculates the Jacobian of the model function given as a discrete set of time-signal values.
-