Home
last modified time | relevance | path

Searched refs:my_dist (Results 1 – 25 of 49) sorted by relevance

12

/dports/devel/boost-docs/boost_1_72_0/libs/math/example/
H A Dbinomial_example_nag.cpp57 binomial_distribution<>my_dist(4, 0.5); in main() local
58 cout << setw(4) << (int)my_dist.trials() << " " << my_dist.success_fraction() in main()
59 << " " << 2 << " " << cdf(my_dist, 2) << " " in main()
60 << cdf(complement(my_dist, 2)) << " " << pdf(my_dist, 2) << endl; in main()
/dports/devel/boost-python-libs/boost_1_72_0/libs/math/example/
H A Dbinomial_example_nag.cpp57 binomial_distribution<>my_dist(4, 0.5); in main() local
58 cout << setw(4) << (int)my_dist.trials() << " " << my_dist.success_fraction() in main()
59 << " " << 2 << " " << cdf(my_dist, 2) << " " in main()
60 << cdf(complement(my_dist, 2)) << " " << pdf(my_dist, 2) << endl; in main()
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/libs/math/example/
H A Dbinomial_example_nag.cpp57 binomial_distribution<>my_dist(4, 0.5); in main() local
58 cout << setw(4) << (int)my_dist.trials() << " " << my_dist.success_fraction() in main()
59 << " " << 2 << " " << cdf(my_dist, 2) << " " in main()
60 << cdf(complement(my_dist, 2)) << " " << pdf(my_dist, 2) << endl; in main()
/dports/databases/percona57-server/boost_1_59_0/libs/math/example/
H A Dbinomial_example_nag.cpp57 binomial_distribution<>my_dist(4, 0.5); in main() local
58 cout << setw(4) << (int)my_dist.trials() << " " << my_dist.success_fraction() in main()
59 << " " << 2 << " " << cdf(my_dist, 2) << " " in main()
60 << cdf(complement(my_dist, 2)) << " " << pdf(my_dist, 2) << endl; in main()
/dports/databases/xtrabackup/boost_1_59_0/libs/math/example/
H A Dbinomial_example_nag.cpp57 binomial_distribution<>my_dist(4, 0.5); in main() local
58 cout << setw(4) << (int)my_dist.trials() << " " << my_dist.success_fraction() in main()
59 << " " << 2 << " " << cdf(my_dist, 2) << " " in main()
60 << cdf(complement(my_dist, 2)) << " " << pdf(my_dist, 2) << endl; in main()
/dports/databases/percona57-client/boost_1_59_0/libs/math/example/
H A Dbinomial_example_nag.cpp57 binomial_distribution<>my_dist(4, 0.5); in main() local
58 cout << setw(4) << (int)my_dist.trials() << " " << my_dist.success_fraction() in main()
59 << " " << 2 << " " << cdf(my_dist, 2) << " " in main()
60 << cdf(complement(my_dist, 2)) << " " << pdf(my_dist, 2) << endl; in main()
/dports/devel/boost-libs/boost_1_72_0/libs/math/example/
H A Dbinomial_example_nag.cpp57 binomial_distribution<>my_dist(4, 0.5); in main() local
58 cout << setw(4) << (int)my_dist.trials() << " " << my_dist.success_fraction() in main()
59 << " " << 2 << " " << cdf(my_dist, 2) << " " in main()
60 << cdf(complement(my_dist, 2)) << " " << pdf(my_dist, 2) << endl; in main()
/dports/databases/mysqlwsrep57-server/boost_1_59_0/libs/math/example/
H A Dbinomial_example_nag.cpp57 binomial_distribution<>my_dist(4, 0.5); in main() local
58 cout << setw(4) << (int)my_dist.trials() << " " << my_dist.success_fraction() in main()
59 << " " << 2 << " " << cdf(my_dist, 2) << " " in main()
60 << cdf(complement(my_dist, 2)) << " " << pdf(my_dist, 2) << endl; in main()
/dports/devel/hyperscan/boost_1_75_0/libs/math/example/
H A Dbinomial_example_nag.cpp57 binomial_distribution<>my_dist(4, 0.5); in main() local
58 cout << setw(4) << (int)my_dist.trials() << " " << my_dist.success_fraction() in main()
59 << " " << 2 << " " << cdf(my_dist, 2) << " " in main()
60 << cdf(complement(my_dist, 2)) << " " << pdf(my_dist, 2) << endl; in main()
/dports/devel/boost-docs/boost_1_72_0/libs/math/doc/distributions/
H A Dnag_library.qbk33 binomial my_dist(4, 0.5); // c.f. NAG n = 4, p = 0.5
38 << my_dist.trials() << " " // Echo the NAG input n = 4 trials.
39 << my_dist.success_fraction() << " " // Echo the NAG input p = 0.5
40 << cdf(my_dist, 2) << " " // NAG plek with k = 2
41 << cdf(complement(my_dist, 2)) << " " // NAG pgtk with k = 2
42 << pdf(my_dist, 2) << endl; // NAG peqk with k = 2
H A Ddist_tutorial.qbk119 pdf(my_dist, x); // Returns PDF (density) at point x of distribution my_dist.
123 cdf(my_dist, x); // Returns CDF (integral from -infinity to point x)
124 // of distribution my_dist.
128 quantile(my_dist, p); // Returns the value of the random variable x
129 // such that cdf(my_dist, x) == p.
/dports/devel/boost-python-libs/boost_1_72_0/libs/math/doc/distributions/
H A Dnag_library.qbk33 binomial my_dist(4, 0.5); // c.f. NAG n = 4, p = 0.5
38 << my_dist.trials() << " " // Echo the NAG input n = 4 trials.
39 << my_dist.success_fraction() << " " // Echo the NAG input p = 0.5
40 << cdf(my_dist, 2) << " " // NAG plek with k = 2
41 << cdf(complement(my_dist, 2)) << " " // NAG pgtk with k = 2
42 << pdf(my_dist, 2) << endl; // NAG peqk with k = 2
H A Ddist_tutorial.qbk119 pdf(my_dist, x); // Returns PDF (density) at point x of distribution my_dist.
123 cdf(my_dist, x); // Returns CDF (integral from -infinity to point x)
124 // of distribution my_dist.
128 quantile(my_dist, p); // Returns the value of the random variable x
129 // such that cdf(my_dist, x) == p.
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/libs/math/doc/distributions/
H A Dnag_library.qbk33 binomial my_dist(4, 0.5); // c.f. NAG n = 4, p = 0.5
38 << my_dist.trials() << " " // Echo the NAG input n = 4 trials.
39 << my_dist.success_fraction() << " " // Echo the NAG input p = 0.5
40 << cdf(my_dist, 2) << " " // NAG plek with k = 2
41 << cdf(complement(my_dist, 2)) << " " // NAG pgtk with k = 2
42 << pdf(my_dist, 2) << endl; // NAG peqk with k = 2
H A Ddist_tutorial.qbk119 pdf(my_dist, x); // Returns PDF (density) at point x of distribution my_dist.
123 cdf(my_dist, x); // Returns CDF (integral from -infinity to point x)
124 // of distribution my_dist.
128 quantile(my_dist, p); // Returns the value of the random variable x
129 // such that cdf(my_dist, x) == p.
/dports/databases/percona57-server/boost_1_59_0/libs/math/doc/distributions/
H A Dnag_library.qbk33 binomial my_dist(4, 0.5); // c.f. NAG n = 4, p = 0.5
38 << my_dist.trials() << " " // Echo the NAG input n = 4 trials.
39 << my_dist.success_fraction() << " " // Echo the NAG input p = 0.5
40 << cdf(my_dist, 2) << " " // NAG plek with k = 2
41 << cdf(complement(my_dist, 2)) << " " // NAG pgtk with k = 2
42 << pdf(my_dist, 2) << endl; // NAG peqk with k = 2
H A Ddist_tutorial.qbk119 pdf(my_dist, x); // Returns PDF (density) at point x of distribution my_dist.
123 cdf(my_dist, x); // Returns CDF (integral from -infinity to point x)
124 // of distribution my_dist.
128 quantile(my_dist, p); // Returns the value of the random variable x
129 // such that cdf(my_dist, x) == p.
/dports/databases/xtrabackup/boost_1_59_0/libs/math/doc/distributions/
H A Dnag_library.qbk33 binomial my_dist(4, 0.5); // c.f. NAG n = 4, p = 0.5
38 << my_dist.trials() << " " // Echo the NAG input n = 4 trials.
39 << my_dist.success_fraction() << " " // Echo the NAG input p = 0.5
40 << cdf(my_dist, 2) << " " // NAG plek with k = 2
41 << cdf(complement(my_dist, 2)) << " " // NAG pgtk with k = 2
42 << pdf(my_dist, 2) << endl; // NAG peqk with k = 2
/dports/databases/percona57-client/boost_1_59_0/libs/math/doc/distributions/
H A Dnag_library.qbk33 binomial my_dist(4, 0.5); // c.f. NAG n = 4, p = 0.5
38 << my_dist.trials() << " " // Echo the NAG input n = 4 trials.
39 << my_dist.success_fraction() << " " // Echo the NAG input p = 0.5
40 << cdf(my_dist, 2) << " " // NAG plek with k = 2
41 << cdf(complement(my_dist, 2)) << " " // NAG pgtk with k = 2
42 << pdf(my_dist, 2) << endl; // NAG peqk with k = 2
/dports/devel/boost-libs/boost_1_72_0/libs/math/doc/distributions/
H A Dnag_library.qbk33 binomial my_dist(4, 0.5); // c.f. NAG n = 4, p = 0.5
38 << my_dist.trials() << " " // Echo the NAG input n = 4 trials.
39 << my_dist.success_fraction() << " " // Echo the NAG input p = 0.5
40 << cdf(my_dist, 2) << " " // NAG plek with k = 2
41 << cdf(complement(my_dist, 2)) << " " // NAG pgtk with k = 2
42 << pdf(my_dist, 2) << endl; // NAG peqk with k = 2
/dports/databases/mysqlwsrep57-server/boost_1_59_0/libs/math/doc/distributions/
H A Dnag_library.qbk33 binomial my_dist(4, 0.5); // c.f. NAG n = 4, p = 0.5
38 << my_dist.trials() << " " // Echo the NAG input n = 4 trials.
39 << my_dist.success_fraction() << " " // Echo the NAG input p = 0.5
40 << cdf(my_dist, 2) << " " // NAG plek with k = 2
41 << cdf(complement(my_dist, 2)) << " " // NAG pgtk with k = 2
42 << pdf(my_dist, 2) << endl; // NAG peqk with k = 2
/dports/devel/hyperscan/boost_1_75_0/libs/math/doc/distributions/
H A Dnag_library.qbk33 binomial my_dist(4, 0.5); // c.f. NAG n = 4, p = 0.5
38 << my_dist.trials() << " " // Echo the NAG input n = 4 trials.
39 << my_dist.success_fraction() << " " // Echo the NAG input p = 0.5
40 << cdf(my_dist, 2) << " " // NAG plek with k = 2
41 << cdf(complement(my_dist, 2)) << " " // NAG pgtk with k = 2
42 << pdf(my_dist, 2) << endl; // NAG peqk with k = 2
/dports/games/spring/spring_98.0/AI/Skirmish/AAI/
H A DAAIUnitTable.cpp347 float my_dist; in FindClosestBuilder() local
382my_dist = fastmath::apxsqrt( (builder_pos.x - pos->x) * (builder_pos.x - pos->x) + (builder_pos.z … in FindClosestBuilder()
385 my_dist /= ai->Getbt()->GetUnitDef(builder->def_id).speed; in FindClosestBuilder()
387 if(my_dist < *min_dist) in FindClosestBuilder()
390 *min_dist = my_dist; in FindClosestBuilder()
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/queso/src/stats/inc/
H A DInfoTheory_impl.h61 double my_dist = nnDist[ k ]; in distANN_XY() local
65 if( my_dist == 0.0 ) in distANN_XY()
74 my_dist = nnDist_tmp[ my_k ]; in distANN_XY()
81 distsXY[ i ] = my_dist; in distANN_XY()
/dports/devel/onetbb/oneTBB-2021.4.0/examples/graph/som/
H A Dsom_graph.cpp638 double my_dist = map1.BMU(my_teaching[i], xdist, ydist); in main() local
640 single_dist.push_back(my_dist); in main()
645 if (single_dist[i] != my_dist || single_xval[i] != xdist || in main()
652 my_dist, in main()

12