Numeric
Explore key numeric algorithms in the C++17 standard library such as accumulate, adjacent_difference, partial_sum, and new scan and reduce functions. Understand how to apply these algorithms with custom callables to perform advanced numeric operations and optimize your C++ code.
We'll cover the following...
We'll cover the following...
The numeric algorithms std::accumulate, std::adjacent_difference, std::partial_sum, std::inner_product and std::iota and the six additional C++17 algorithms std::exclusive_scan, std::inclusive_scan, ...