Click or drag to resize

MatrixMathCopyColumnT(IROMatrixT, Int32, IMatrixT, Int32, Int32) Method

Copies one column of a source matrix into a destination matrix to a given row and column offset.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static void CopyColumn<T>(
	this IROMatrix<T> sourceMatrix,
	int sourceColumnNumber,
	IMatrix<T> destinationMatrix,
	int destinationRowNumber,
	int destinationColumnNumber
)
where T : struct, new()

Parameters

sourceMatrix  IROMatrixT
The source matrix.
sourceColumnNumber  Int32
The source column number.
destinationMatrix  IMatrixT
The destination matrix.
destinationRowNumber  Int32
The destination row number offset.
destinationColumnNumber  Int32
The destination column number offset.

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:Altaxo.Calc.LinearAlgebra.MatrixMath.CopyColumn``1(Altaxo.Calc.LinearAlgebra.IROMatrix{``0},System.Int32,Altaxo.Calc.LinearAlgebra.IMatrix{``0},System.Int32,System.Int32)"]

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IROMatrixT. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also