Exemple #1
0
 public static void Copy(T[] sourceArray, SparseVector <T> destVector, int length = -1)
 {
     Copy(sourceArray, 0, destVector, 0, length);
 }
Exemple #2
0
 public static void Copy(SparseVector <T> sourceVector, SparseVector <T> destVector, int length = -1)
 {
     Copy(sourceVector, 0, destVector, 0, length);
 }