Click or drag to resize

FloatSymmetricMatrixApply(FuncFloatVector, Single) Method

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.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public FloatVector Apply(
	Func<FloatVector, float> function
)

Parameters

function  FuncFloatVector, Single
A delegate object representing a function that takes a FloatVector parameter and returns a float.

Return Value

FloatVector
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