Esempio n. 1
0
 void CopyToUnchecked(DenseColumnMajorMatrixStorage <T> target)
 {
     //Buffer.BlockCopy(Data, 0, target.Data, 0, Data.Length * System.Runtime.InteropServices.Marshal.SizeOf(typeof(T)));
     Array.Copy(Data, 0, target.Data, 0, Data.Length);
 }