User`s guide
mwArray(const mwArray& arr)
Purpose mwArray copy constructor. Constructs new array from existing one
C++
Syntax
#include "mclcppclass. h"
mwArray a(2, 2, mxDOUBLE_CLASS);
mwArray b(a);
Arguments arr
mwArray
to copy
Return
Value
None
Description Use this constructor to create a copy of an existing array. The new array
contains a deep copy of the input array.
C-42