MatrixTPointwiseUnary(ActionMatrixT) Method |
Helper function to apply a unary function to a matrix. The function
f modifies the matrix given to it in place. Before its
called, a copy of the 'this' matrix is first created, then passed to
f. The copy is then returned as the result
Namespace: Altaxo.Calc.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax protected Matrix<T> PointwiseUnary(
Action<Matrix<T>> f
)
Parameters
- f ActionMatrixT
- Function which takes a matrix, modifies it in place and returns void
Return Value
MatrixTNew instance of matrix which is the result
See Also