Click or drag to resize

MatrixTReduceColumns Method

Reduces all column vectors by applying a function between two of them, until only a single vector is left.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public Vector<T> ReduceColumns(
	Func<Vector<T>, Vector<T>, Vector<T>> f
)

Parameters

f  FuncVectorT, VectorT, VectorT
The reduction function applied to successive column vectors.

Return Value

VectorT
The reduced column vector.
See Also