MatrixTTransformByColumnU Method

Applies the given function to each column of the MatrixT. Function does not mutate this MatrixT, it returns a new MatrixT.

Definition

Namespace: Gemstone.Numeric
Assembly: Gemstone.Numeric (in Gemstone.Numeric.dll) Version: 1.0.138 -- Release Build+88ca978c0cce6d0d3e501e198adb13956063f519
public Matrix<U> TransformByColumn<U>(
	Func<T[], int, U[]> func
)
where U : struct, new(), INumberBase<U>, IComparisonOperators<U, U, bool>

Parameters

func  FuncT, Int32, U

Type Parameters

U

[Missing <typeparam name="U"/> documentation for "M:Gemstone.Numeric.Matrix`1.TransformByColumn``1(System.Func{`0[],System.Int32,``0[]})"]

Return Value

MatrixU

[Missing <returns> documentation for "M:Gemstone.Numeric.Matrix`1.TransformByColumn``1(System.Func{`0[],System.Int32,``0[]})"]

See Also