Applies a function to each column in a matrix in-place.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public Matrix<T> MapColumnsInPlace(
Action<Vector<T>> function
)
Public Function MapColumnsInPlace (
function As Action(Of Vector(Of T))
) As Matrix(Of T)
public:
Matrix<T>^ MapColumnsInPlace(
Action<Vector<T>^>^ function
)
member MapColumnsInPlace :
function : Action<Vector<'T>> -> Matrix<'T>
Parameters
- function
- Type: SystemActionVectorT
A delegate that represents a multivariate function.
Return Value
Type:
MatrixTA reference to this instance.
function must operate on the columns of the matrix in-place.
Reference