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