- HasNan
- Transpose
- TriL
- TriU
- Diag
- Row
- Col
- Copy
- Compare
- CompareByDigits
- Flat
- Clip
- Reshape
- Resize
- Set
- SwapRows
- SwapCols
- Split
- Hsplit
- Vsplit
- ArgSort
- Sort
Copy
Create a copy of the given matrix/vector.
bool matrix::Copy(
|
Parameters
v
[in] Matrix or vector to copy.
Return Value
Returns true on success, false otherwise.
MQL5 example:
matrix a=matrix::Eye(3, 4);
|
Python example:
import numpy as np
|