Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ilpropheta/db6cc41119f85161a855c978c65852af to your computer and use it in GitHub Desktop.
Save ilpropheta/db6cc41119f85161a855c978c65852af to your computer and use it in GitHub Desktop.
cout << inner_product(begin(expected), end(expected),
begin(actual),
0.0, // starting value
[](auto... a){ return max(fabs(a)...); }, // "sum"
minus<>{}); // "product"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment