|
template<typename type, class allocator>
type FX::Maths::mean |
( |
const QMemArray< type, allocator > & |
array, |
|
|
FXuint |
stride = 1 , |
|
|
type *FXRESTRICT |
min = 0 , |
|
|
type *FXRESTRICT |
max = 0 , |
|
|
type *FXRESTRICT |
mode = 0 | |
|
) |
| | throw () [inline] |
Definition at line 1805 of file FXMaths.h.
References FX::QMemArray< type, allocator >::count(), FX::QMemArray< type, allocator >::data(), max(), mean(), and min(). 01806 {
01807 return mean(array.data(), array.count(), stride, max, min, mode);
01808 }
|