Click or drag to resize

MatrixTCopyTo Method

Copies the elements of this matrix to the given matrix.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public void CopyTo(
	Matrix<T> target
)

Parameters

target  MatrixT
The matrix to copy values into.
Exceptions
ExceptionCondition
ArgumentNullException If target is .
ArgumentException If this and the target matrix do not have the same dimensions..
See Also