Returns a new vector containing an element for each column or row in this matrix. The elements are the results of applying a function that takes a vector and returns a single-precision number.

Namespace:  CenterSpace.NMath.Matrix
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public FloatVector Apply(
	NMathFunctions..::.FloatVectorFloatFunction function
)
Visual Basic (Declaration)
Public Function Apply ( _
	function As NMathFunctions..::.FloatVectorFloatFunction _
) As FloatVector
Visual C++
public:
FloatVector^ Apply(
	NMathFunctions..::.FloatVectorFloatFunction^ function
)

Parameters

function
Type: CenterSpace.NMath.Core..::.NMathFunctions..::.FloatVectorFloatFunction
A delegate object representing a function that takes a FloatVector parameter and returns a float.

Return Value

A vector v with the same length as the number of columns and rows in this matrix, where v[i]=function( this.Col(i) ).

See Also