NumCpp
2.5.1
A Templatized Header Only C++ Implementation of the Python NumPy Library
logical_and.hpp
Go to the documentation of this file.
1
#pragma once
29
30
#include "
NumCpp/Core/Internal/Error.hpp
"
31
#include "
NumCpp/Core/Internal/StlAlgorithms.hpp
"
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_and
(
const
NdArray<dtype>
& inArray1,
const
NdArray<dtype>
& inArray2)
52
{
53
return
inArray1 && inArray2;
54
}
55
}
// namespace nc
Error.hpp
NdArray.hpp
StlAlgorithms.hpp
nc::NdArray< bool >
nc
Definition:
Coordinate.hpp:45
nc::logical_and
NdArray< bool > logical_and(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)
Definition:
logical_and.hpp:51
include
NumCpp
Functions
logical_and.hpp
Generated by
1.9.1