max_abs_index [MTL Home] Programmers Guide
  Contents | Index |  Search 


Category:algorithms Component type:function
Prototype
template <class Vec>
Vec::size_type max_abs_index(const Vec& x) ;
Description
The location (index) of the element with the maximum absolute value. is the type of the absolute value of its value_type.
Definition
mtl.h
Requirements on types
  • The vector or matrix must have an associated magnitude_type that
  • There must be abs() defined for Vector::value_type.
  • The magnitude type must be LessThanComparible.
Preconditions
Complexity
O(n)
Example
In max_abs_index.cc:

Notes
See also

[MTL Home] Copyright © 1998,1999 University of Notre Dame. All Rights Reserved.