Click or drag to resize

MatrixTReduceRows Method

Reduces all row 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> ReduceRows(
	Func<Vector<T>, Vector<T>, Vector<T>> f
)

Parameters

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

Return Value

VectorT
The reduced row vector.
See Also