alglib.dsoptimalsplit2fast C# (CSharp) Méthode

dsoptimalsplit2fast() public static méthode

public static dsoptimalsplit2fast ( double &a, int &c, int &tiesbuf, int &cntbuf, double &bufr, int &bufi, int n, int nc, double alpha, int &info, double &threshold, double &rms, double &cvrms ) : void
a double
c int
tiesbuf int
cntbuf int
bufr double
bufi int
n int
nc int
alpha double
info int
threshold double
rms double
cvrms double
Résultat void
    public static void dsoptimalsplit2fast(ref double[] a, ref int[] c, ref int[] tiesbuf, ref int[] cntbuf, ref double[] bufr, ref int[] bufi, int n, int nc, double alpha, out int info, out double threshold, out double rms, out double cvrms)
    {
        info = 0;
        threshold = 0;
        rms = 0;
        cvrms = 0;
        bdss.dsoptimalsplit2fast(ref a, ref c, ref tiesbuf, ref cntbuf, ref bufr, ref bufi, n, nc, alpha, ref info, ref threshold, ref rms, ref cvrms);
        return;
    }