コード例 #1
0
ファイル: IBlas.cs プロジェクト: stuarthillary/BlasNet
 public static void copy(int n, float[] x, int offsetx, int incx, float[] y, int offsety, int incy)
 {
     Provider.scopy(n, x, offsetx, incx, y, offsety, incy);
 }