Click or drag to resize

MatrixCopyTo Method (Matrix, Int32, Int32, Int32, Int32, Int32, Int32)

Copies part of this matrix to another one.

Namespace:  FinMath.LinearAlgebra
Assembly:  FinMath (in FinMath.dll) Version: 2.4.7-0a995bd0ea1854c2c868ec3f8dae606c5777e170
Syntax
C#
public void CopyTo(
	Matrix matrix,
	int srcRowOffset,
	int rows,
	int srcColOffset,
	int columns,
	int dstRowOffset,
	int dstColOffset
)

Parameters

matrix
Type: FinMath.LinearAlgebraMatrix
The target matrix.
srcRowOffset
Type: SystemInt32
The row offset in source (this) matrix.
rows
Type: SystemInt32
The number of rows in submatrix to be copied.
srcColOffset
Type: SystemInt32
The column offset in source (this) matrix.
columns
Type: SystemInt32
The number of columns in submatrix to be copied.
dstRowOffset
Type: SystemInt32
The row offset in target matrix.
dstColOffset
Type: SystemInt32
The columns offset in target matrix.
See Also