NumCpp  2.8.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
nans_like.hpp
Go to the documentation of this file.
1 #pragma once
29 
30 #include "NumCpp/NdArray.hpp"
31 
32 namespace nc
33 {
34  //============================================================================
35  // Method Description:
41  template<typename dtype>
43  {
44  NdArray<double> returnArray(inArray.shape());
45  returnArray.nans();
46  return returnArray;
47  }
48 } // namespace nc
Shape shape() const noexcept
Definition: NdArrayCore.hpp:4276
NdArray< dtype > & nans() noexcept
Definition: NdArrayCore.hpp:3160
Definition: Coordinate.hpp:45
NdArray< double > nans_like(const NdArray< dtype > &inArray)
Definition: nans_like.hpp:42