MyraMath
Classes
minmax.h File Reference

Routines to find the extremal values of a Matrix or Vector. More...

#include <myramath/MYRAMATH_EXPORT.h>
#include <myramath/utility/Number.h>
Include dependency graph for minmax.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  myra::CMatrixRange< Number >
 Represents a const MatrixRange. More...
 
class  myra::CVectorRange< Number >
 Represents a const VectorRange. More...
 
class  myra::MatrixExtrema< Number >
 Return type for min() / max() of a Matrix. More...
 
class  myra::VectorExtrema< Number >
 Return type for min() / max() of a Vector. More...
 

Functions

MatrixExtrema< NumberS > myra::min (const CMatrixRange< NumberS > &A)
 Finds minimum over a Matrix.
 
MatrixExtrema< NumberD > myra::min (const CMatrixRange< NumberD > &A)
 Finds minimum over a Matrix.
 
MatrixExtrema< NumberC > myra::min (const CMatrixRange< NumberC > &A)
 Finds minimum over a Matrix.
 
MatrixExtrema< NumberZ > myra::min (const CMatrixRange< NumberZ > &A)
 Finds minimum over a Matrix.
 
MatrixExtrema< NumberS > myra::max (const CMatrixRange< NumberS > &A)
 Finds maximum over a Matrix.
 
MatrixExtrema< NumberD > myra::max (const CMatrixRange< NumberD > &A)
 Finds maximum over a Matrix.
 
MatrixExtrema< NumberC > myra::max (const CMatrixRange< NumberC > &A)
 Finds maximum over a Matrix.
 
MatrixExtrema< NumberZ > myra::max (const CMatrixRange< NumberZ > &A)
 Finds maximum over a Matrix.
 
VectorExtrema< NumberS > myra::min (const CVectorRange< NumberS > &a)
 Finds minimum over a Vector.
 
VectorExtrema< NumberD > myra::min (const CVectorRange< NumberD > &a)
 Finds minimum over a Vector.
 
VectorExtrema< NumberC > myra::min (const CVectorRange< NumberC > &a)
 Finds minimum over a Vector.
 
VectorExtrema< NumberZ > myra::min (const CVectorRange< NumberZ > &a)
 Finds minimum over a Vector.
 
VectorExtrema< NumberS > myra::max (const CVectorRange< NumberS > &a)
 Finds maximum over a Vector.
 
VectorExtrema< NumberD > myra::max (const CVectorRange< NumberD > &a)
 Finds maximum over a Vector.
 
VectorExtrema< NumberC > myra::max (const CVectorRange< NumberC > &a)
 Finds maximum over a Vector.
 
VectorExtrema< NumberZ > myra::max (const CVectorRange< NumberZ > &a)
 Finds maximum over a Vector.
 

Detailed Description

Routines to find the extremal values of a Matrix or Vector.