ILinear Algebra Operations<T, TVector, TMatrix>.Copy Method
Definition
Namespace: Extreme.Mathematics.LinearAlgebra.Implementation
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
Copy( | Copies a vector. |
Copy( | Copies part of a matrix to another. |
Copy(Int32, TVector, TVector)
Copies a vector.
void Copy(
int n,
TVector x,
TVector y
)
Parameters
Copy(MatrixTriangle, Int32, Int32, TMatrix, TMatrix)
Copies part of a matrix to another.
void Copy(
MatrixTriangle storedTriangle,
int m,
int n,
TMatrix a,
TMatrix b
)
Parameters
- storedTriangle MatrixTriangle
- A MatrixTriangle value that specifies which part of the matrix to copy.
- m Int32
- An integer specifying the number of rows of the matrix a. Must be greater than or equal to zero.
- n Int32
- An integer specifying the number of columns of the matrix a. Must be greater than or equal to zero.
- a TMatrix
- T array specifying the m-by-n source matrix.
- b TMatrix
- T array specifying the m-by-n destination matrix.
Remarks
This method corresponds to the LAPACK routine ?LACPY.