Home
last modified time | relevance | path

Searched refs:laplace (Results 1 – 17 of 17) sorted by relevance

/third_party/boost/libs/random/test/
Dtest_laplace.cpp17 #define BOOST_RANDOM_DISTRIBUTION_NAME laplace
18 #define BOOST_MATH_DISTRIBUTION boost::math::laplace
/third_party/boost/libs/math/doc/distributions/
Dlaplace.qbk3 ``#include <boost/math/distributions/laplace.hpp>``
11 typedef laplace_distribution<> laplace;
54 Constructs a laplace distribution with location /location/ and
81 The laplace distribution is implemented in terms of the
133 [endsect] [/section:laplace_dist laplace]
Ddist_reference.qbk24 [include laplace.qbk]
/third_party/boost/libs/math/example/
Dlaplace_example.cpp22 using boost::math::laplace; // typedef provides default type is double.
52 laplace l; // (default mean = zero, and standard deviation = unity) in main()
/third_party/boost/libs/math/test/compile_test/
Ddist_laplace_incl_test.cpp18 TEST_DIST_FUNC(laplace) in compile_and_link_test()
Dinstantiate.hpp143 function_requires<DistributionConcept<dist_test::laplace > >(); in instantiate()
/third_party/mindspore/mindspore/ops/composite/
D__init__.py29 from .random_ops import normal, laplace, uniform, gamma, poisson, multinomial
Drandom_ops.py86 def laplace(shape, mean, lambda_param, seed=None): function
/third_party/boost/libs/math/doc/graphs/
Ddist_graphs.cpp353 distribution_plotter<boost::math::laplace> in main()
355 laplace_plotter.add(boost::math::laplace(0, 1), "&#x3BC; = 0, &#x3C3; = 1"); in main()
356 laplace_plotter.add(boost::math::laplace(0, 0.5), "&#x3BC; = 0, &#x3C3; = 0.5"); in main()
357 laplace_plotter.add(boost::math::laplace(0, 2), "&#x3BC; = 0, &#x3C3; = 2"); in main()
358 laplace_plotter.add(boost::math::laplace(-1, 1), "&#x3BC; = -1, &#x3C3; = 1"); in main()
359 laplace_plotter.add(boost::math::laplace(1, 1), "&#x3BC; = 1, &#x3C3; = 1"); in main()
/third_party/boost/libs/math/reporting/performance/
Dtest_distributions.cpp439 distribution_tester laplace("Laplace"); in main() local
440 laplace.add_test_case(0, 1, two_param_quantile<boost::math::laplace_distribution<> >()); in main()
441 laplace.add_test_case(20, 20, two_param_quantile<boost::math::laplace_distribution<> >()); in main()
442laplace.add_test_case(-20, 0.0125, two_param_quantile<boost::math::laplace_distribution<> >()); in main()
444 test_boost_2_param<boost::math::laplace_distribution>(laplace); in main()
568laplace.run_timed_tests([](const std::vector<double>& v, double x) { return gsl_cdf_laplace_P(x, … in main()
569laplace.run_timed_tests([](const std::vector<double>& v, double x) { return gsl_cdf_laplace_Pinv(… in main()
/third_party/mindspore/tests/st/auto_monad/
Dtest_effect_random.py92 s1 = C.laplace(self.shape, mean, lambda_param, self.seed)
93 s2 = C.laplace(self.shape, mean, lambda_param, self.seed)
94 s3 = C.laplace(self.shape, mean, lambda_param, self.seed)
/third_party/boost/boost/math/distributions/
Dfwd.hpp135 typedef boost::math::laplace_distribution<Type, Policy> laplace;\
Dlaplace.hpp81 typedef laplace_distribution<double> laplace; typedef
/third_party/boost/libs/math/dot_net_example/distribution_explorer/
Dreadme.txt28 * laplace
/third_party/boost/libs/random/doc/
Ddistributions.qbk75 [[__laplace_distribution] [laplace distribution] [-]]
/third_party/boost/libs/math/test/
Dtest_laplace.cpp466 boost::math::laplace lp2(0.5); // Using typedef. in test_bad_dist_parameters()
/third_party/mindspore/tests/ut/python/ops/
Dtest_ops.py872 out = C.laplace(self.shape, mean, lambda_param, self.seed)