NumCpp  2.12.1
A Templatized Header Only C++ Implementation of the Python NumPy Library
nans_like.hpp
Go to the documentation of this file.
1
28#pragma once
29
30#include "NumCpp/NdArray.hpp"
31
32namespace 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
const Shape & shape() const noexcept
Definition: NdArrayCore.hpp:4511
self_type & nans() noexcept
Definition: NdArrayCore.hpp:3216
Definition: Cartesian.hpp:40
NdArray< double > nans_like(const NdArray< dtype > &inArray)
Definition: nans_like.hpp:42