Home | History | Annotate | Download | only in pthread_create

Lines Matching defs:r2

443  * -> Y = aX + b; -- Error is r2 = avg((Y -aX -b)²);
451 * We compute each error factor (r1, r2, r3, r4) then search which is the smallest (with ponderation).
477 double r1[NSCENAR], r2[NSCENAR], r3[NSCENAR], r4[NSCENAR];
498 r2[i] = 0.0;
612 * -> r2, r3, r4 for each scenar.
620 /* r2 = avg((y - ax -b)²); t = (y - ax - b) = (y - yavg) - a (x - xavg); */
623 r2[i] += t * t / array_max[i];
668 output(" Divergence %g\n", r2[i]);
674 output(" Divergence %g\n", r2[i]);
680 output(" Divergence %g\n", r2[i]);
685 if ((r1[i] > 1.1 * r2[i]) || (r1[i] > 1.2 * r3[i])