NumCpp  2.14.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
minimum.hpp
Go to the documentation of this file.
1
28#pragma once
29
30#include <cmath>
31#include <complex>
32#include <string>
33
37#include "NumCpp/NdArray.hpp"
39
40namespace nc
41{
42 //============================================================================
43 // Method Description:
54 template<typename dtype>
56 {
58
59 const auto comparitor = [](const dtype& lhs, const dtype& rhs) noexcept -> bool { return lhs < rhs; };
60 return broadcast::broadcaster<dtype>(inArray1,
62 [&comparitor](const dtype& value1, const dtype& value2)
63 { return std::min(value1, value2, comparitor); });
64 }
65
66 //============================================================================
67 // Method Description:
78 template<typename dtype>
84
85 //============================================================================
86 // Method Description:
97 template<typename dtype>
102} // namespace nc
#define STATIC_ASSERT_ARITHMETIC_OR_COMPLEX(dtype)
Definition StaticAsserts.hpp:56
Holds 1D and 2D arrays, the main work horse of the NumCpp library.
Definition NdArrayCore.hpp:139
Definition Cartesian.hpp:40
NdArray< dtype > minimum(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)
Definition minimum.hpp:55
NdArray< dtype > arange(dtype inStart, dtype inStop, dtype inStep=1)
Definition arange.hpp:59