 |
NumCpp
2.1.0
A C++ implementation of the Python Numpy library
|
Go to the documentation of this file.
54 template<
typename dtype>
61 [](dtype& value) noexcept ->
void
63 if (std::isnan(value)) { value = DtypeInfo<dtype>::min(); };
66 return max(arrayCopy, inAxis);
void for_each(InputIt first, InputIt last, UnaryFunction f)
Definition: StlAlgorithms.hpp:214
#define STATIC_ASSERT_FLOAT(dtype)
Definition: StaticAsserts.hpp:44
NdArray< dtype > nanmax(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)
Definition: nanmax.hpp:55
iterator end() noexcept
Definition: NdArrayCore.hpp:1435
Axis
Enum To describe an axis.
Definition: Types.hpp:47
Definition: Coordinate.hpp:45
NdArray< dtype > max(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)
Definition: max.hpp:46
iterator begin() noexcept
Definition: NdArrayCore.hpp:1091