예제 #1
0
파일: VSL.cs 프로젝트: plserg/MKLWrapper
 public static int RngExponential(VSL.GaussianMethod method, IntPtr stream, double[] vector, double dis, double rate) => vdRngExponential((int)method, stream, vector.Length, vector, dis, rate);
예제 #2
0
파일: VSL.cs 프로젝트: plserg/MKLWrapper
 public static int RngBeta(VSL.GaussianMethod method, IntPtr stream, int n, double[] r, double p, double q, double a, double beta) => vdRngBeta((int)method, stream, n, r, p, q, a, beta);
예제 #3
0
파일: VSL.cs 프로젝트: plserg/MKLWrapper
 public static int RngGaussian(VSL.GaussianMethod method, IntPtr stream, double[] x, double mean, double sigma) =>
 vdRngGaussian((int)method, stream, x.Length, x, mean, sigma);