Applies a function in-place to the elements of a matrix.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public virtual Matrix<T> MapInPlace(
Func<T, T> function
)
Public Overridable Function MapInPlace (
function As Func(Of T, T)
) As Matrix(Of T)
public:
virtual Matrix<T>^ MapInPlace(
Func<T, T>^ function
)
abstract MapInPlace :
function : Func<'T, 'T> -> Matrix<'T>
override MapInPlace :
function : Func<'T, 'T> -> Matrix<'T>
Parameters
- function
- Type: SystemFuncT, T
A delegate that represents a function of one variable
Return Value
Type:
MatrixTA reference to this instance.
Reference