NumCpp
2.12.1
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
30
#include <string>
31
32
#include "
NumCpp/Core/Internal/Error.hpp
"
33
#include "
NumCpp/Core/Internal/StlAlgorithms.hpp
"
34
#include "
NumCpp/NdArray.hpp
"
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
Error.hpp
NdArray.hpp
StlAlgorithms.hpp
nc::NdArray< bool >
nc
Definition:
Cartesian.hpp:40
nc::logical_or
NdArray< bool > logical_or(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)
Definition:
logical_or.hpp:50
include
NumCpp
Functions
logical_or.hpp
Generated by
1.9.4