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