Searched refs:mu_v (Results 1 – 4 of 4) sorted by relevance
/third_party/boost/boost/math/tools/ |
D | bivariate_statistics.hpp | 29 Real mu_v = v[0]; in means_and_covariance() local 34 Real v_tmp = v[i] - mu_v; in means_and_covariance() 37 mu_v = mu_v + v_tmp/(i+1); in means_and_covariance() 40 return std::make_tuple(mu_u, mu_v, cov/size(u)); in means_and_covariance() 46 auto [mu_u, mu_v, cov] = boost::math::tools::means_and_covariance(u, v); in covariance() 60 Real mu_v = v[0]; in correlation_coefficient() local 67 Real v_tmp = v[i] - mu_v; in correlation_coefficient() 72 mu_v = mu_v + v_tmp/(i+1); in correlation_coefficient()
|
/third_party/boost/boost/math/statistics/ |
D | bivariate_statistics.hpp | 27 Real mu_v = v[0]; in means_and_covariance() local 32 Real v_tmp = v[i] - mu_v; in means_and_covariance() 35 mu_v = mu_v + v_tmp/(i+1); in means_and_covariance() 38 return std::make_tuple(mu_u, mu_v, cov/size(u)); in means_and_covariance() 44 auto [mu_u, mu_v, cov] = boost::math::statistics::means_and_covariance(u, v); in covariance() 58 Real mu_v = v[0]; in correlation_coefficient() local 65 Real v_tmp = v[i] - mu_v; in correlation_coefficient() 70 mu_v = mu_v + v_tmp/(i+1); in correlation_coefficient()
|
/third_party/boost/libs/math/test/ |
D | bivariate_statistics_test.cpp | 98 Real mu_v = boost::math::statistics::mean(v); in test_covariance() local 104 BOOST_TEST(abs(mu_v - mu_v_) < tol); in test_covariance()
|
/third_party/boost/libs/math/doc/statistics/ |
D | bivariate_statistics.qbk | 52 auto [mu_u, mu_v, cov_uv] = boost::math::statistics::means_and_covariance(u, v);
|