NumCpp  2.6.2
A Templatized Header Only C++ Implementation of the Python NumPy Library
logical_or.hpp
Go to the documentation of this file.
1 
28 #pragma once
29 
32 #include "NumCpp/NdArray.hpp"
33 
34 #include <string>
35 
36 namespace nc
37 {
38  //============================================================================
39  // Method Description:
50  template<typename dtype>
51  NdArray<bool> logical_or(const NdArray<dtype>& inArray1, const NdArray<dtype>& inArray2)
52  {
53  return inArray1 || inArray2;
54  }
55 } // namespace nc
Holds 1D and 2D arrays, the main work horse of the NumCpp library.
Definition: NdArrayCore.hpp:72
Definition: Coordinate.hpp:45
NdArray< bool > logical_or(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)
Definition: logical_or.hpp:51