Home | History | Annotate | Download | only in layout

Lines Matching refs:distribution

33     const NormalDistribution2D distribution(ORIGIN_X, LARGE_STANDARD_DEVIATION, ORIGIN_Y,
38 // The probability density of the point near the distribution center is larger than the
39 // probability density of the point that is far from distribution center.
40 EXPECT_GE(distribution.getProbabilityDensity(SMALL_COORDINATE, SMALL_COORDINATE),
41 distribution.getProbabilityDensity(LARGE_COORDINATE, LARGE_COORDINATE));
45 EXPECT_GE(distribution.getProbabilityDensity(LARGE_COORDINATE, SMALL_COORDINATE),
46 distribution.getProbabilityDensity(SMALL_COORDINATE, LARGE_COORDINATE));
52 const NormalDistribution2D distribution(ORIGIN_X, LARGE_STANDARD_DEVIATION, ORIGIN_Y,
58 // The probability density of the rotated distribution at the point and the probability
59 // density of the original distribution at the rotated point are the same.
60 const float probabilityDensity0 = distribution.getProbabilityDensity(x, y);