2
0
mirror of https://github.com/boostorg/math.git synced 2026-01-19 04:22:09 +00:00

Remove documentation for z-test function which doesn't exist

This commit is contained in:
Andrew Johnson
2025-08-17 00:10:49 +08:00
parent 7535ee105b
commit 96f12fc564

View File

@@ -29,12 +29,6 @@ std::pair<Real, Real> two_sample_z_test(ForwardIterator begin_1, ForwardIterator
template<typename Container, typename Real = typename Container::value_type>
std::pair<Real, Real> two_sample_z_test(Container const & u, Container const & v);
template<typename ForwardIterator, typename Real = typename std::iterator_traits<ForwardIterator>::value_type>
std::pair<Real, Real> paired_samples_z_test(ForwardIterator begin_1, ForwardIterator end_1, ForwardIterator begin_2, ForwardIterator begin_2);
template<typename Container, typename Real = typename Container::value_type>
std::pair<Real, Real> paired_samples_z_test(Container const & u, Container const & v);
}}}
```