|
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
|