 |
NumCpp
2.1.0
A C++ implementation of the Python Numpy library
|
Go to the documentation of this file.
51 template<
typename dtype>
52 bool isnan(dtype inValue) noexcept
61 return std::isnan(
static_cast<double>(inValue));
76 template<
typename dtype>
81 [](dtype inValue) noexcept ->
bool
83 return isnan(inValue);
Shape shape() const noexcept
Definition: NdArrayCore.hpp:4312
#define STATIC_ASSERT_ARITHMETIC(dtype)
Definition: StaticAsserts.hpp:38
OutputIt transform(InputIt first, InputIt last, OutputIt destination, UnaryOperation unaryFunction)
Definition: StlAlgorithms.hpp:703
const_iterator cend() const noexcept
Definition: NdArrayCore.hpp:1491
NdArray< bool > isnan(const NdArray< dtype > &inArray)
Definition: isnan.hpp:77
Definition: Coordinate.hpp:45
Holds info about the dtype.
Definition: DtypeInfo.hpp:41
const_iterator cbegin() const noexcept
Definition: NdArrayCore.hpp:1147
iterator begin() noexcept
Definition: NdArrayCore.hpp:1091
bool isnan(dtype inValue) noexcept
Definition: isnan.hpp:52