Search code examples
c++cygwin

Infinity norm function in C++


Is there a built in function for the infinity norm in C++? If not, I would like to know which package exactly has it and if it is available for installation using Cygwin. Thanks!


Solution

  • You’re probably looking for std::max_element.