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