MatrixTReduceColumns Method |
Reduces all column vectors by applying a function between two of them, until only a single vector is left.
Namespace: Altaxo.Calc.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic 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
VectorTThe reduced column vector.
See Also