Copy

Create a copy of the given matrix/vector.

bool matrix::Copy(
  const matrix&  a     // copied matrix
   );
bool vector::Copy(
  const vector&  v     // copied vector
   );
 

Parameters

v

[in]  Matrix or vector to copy.

Return Value

Returns true on success, false otherwise.

MQL5 example:

  matrix a=matrix::Eye(34);
  matrix b;
  b.Copy(a);
  matrix c=a;
  Print("matrix b \n"b);
  Print("matrix_c \n"c);
 
  /*
  /*
  matrix b
  [[1,0,0,0]
  [0,1,0,0]
  [0,0,1,0]]
  matrix_c
  [[1,0,0,0]
  [0,1,0,0]
  [0,0,1,0]]
  */
  */

Python example:

import numpy as np
 
a = np.eye(3,4)
print('a \n',a)
b = a
print('b \n',b)
c = np.copy(a)
print('c \n',c)
 
a 
 [[1000.]
 [0100.]
 [0010.]]
b 
 [[1000.]
 [0100.]
 [0010.]]
c 
 [[1000.]
 [0100.]
 [0010.]]