I want to copy some data into my matrix with function memmove().
So I need a pointer to my destination matrix
I use the following code which I copy from NiMatrix.inl:
CNiMatrixT<int> savematrix(10,10);
DataType *ptr =savematrix;
there are some errors with information below:
error C2065: 'DataType' : undeclared identifier
i tried to search some information about key word DataType in Measurement Studio Reference
which made me more confused.
What is key word DataType in Measurement Studio,like this declare in CNiMatrixT<>
Thanks
Vivi Gao