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

Merge pull request #1303 from andrjohns/z-test-docs

Remove documentation for z-test function which doesn't exist
This commit is contained in:
Matt Borland
2025-08-17 10:09:58 +02:00
committed by GitHub

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);
}}}
```