Click or drag to resize

MatrixStorageTFoldByRowTU Method

[Missing <summary> documentation for "M:Altaxo.Calc.LinearAlgebra.Storage.MatrixStorage`1.FoldByRow``1(``0[],System.Func{``0,`0,``0},System.Func{``0,System.Int32,``0},``0[],Altaxo.Calc.LinearAlgebra.Zeros)"]


Namespace: Altaxo.Calc.LinearAlgebra.Storage
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public void FoldByRow<TU>(
	TU[] target,
	Func<TU, T, TU> f,
	Func<TU, int, TU> finalize,
	TU[] state,
	Zeros zeros
)

Parameters

target  TU

[Missing <param name="target"/> documentation for "M:Altaxo.Calc.LinearAlgebra.Storage.MatrixStorage`1.FoldByRow``1(``0[],System.Func{``0,`0,``0},System.Func{``0,System.Int32,``0},``0[],Altaxo.Calc.LinearAlgebra.Zeros)"]

f  FuncTU, T, TU

[Missing <param name="f"/> documentation for "M:Altaxo.Calc.LinearAlgebra.Storage.MatrixStorage`1.FoldByRow``1(``0[],System.Func{``0,`0,``0},System.Func{``0,System.Int32,``0},``0[],Altaxo.Calc.LinearAlgebra.Zeros)"]

finalize  FuncTU, Int32, TU

[Missing <param name="finalize"/> documentation for "M:Altaxo.Calc.LinearAlgebra.Storage.MatrixStorage`1.FoldByRow``1(``0[],System.Func{``0,`0,``0},System.Func{``0,System.Int32,``0},``0[],Altaxo.Calc.LinearAlgebra.Zeros)"]

state  TU

[Missing <param name="state"/> documentation for "M:Altaxo.Calc.LinearAlgebra.Storage.MatrixStorage`1.FoldByRow``1(``0[],System.Func{``0,`0,``0},System.Func{``0,System.Int32,``0},``0[],Altaxo.Calc.LinearAlgebra.Zeros)"]

zeros  Zeros

[Missing <param name="zeros"/> documentation for "M:Altaxo.Calc.LinearAlgebra.Storage.MatrixStorage`1.FoldByRow``1(``0[],System.Func{``0,`0,``0},System.Func{``0,System.Int32,``0},``0[],Altaxo.Calc.LinearAlgebra.Zeros)"]

Type Parameters

TU

[Missing <typeparam name="TU"/> documentation for "M:Altaxo.Calc.LinearAlgebra.Storage.MatrixStorage`1.FoldByRow``1(``0[],System.Func{``0,`0,``0},System.Func{``0,System.Int32,``0},``0[],Altaxo.Calc.LinearAlgebra.Zeros)"]

Remarks
The state array will not be modified, unless it is the same instance as the target array (which is allowed).
See Also