NumCpp  2.1.0
A C++ implementation of the Python Numpy library
min.hpp
Go to the documentation of this file.
1 #pragma once
30 
31 #include "NumCpp/NdArray.hpp"
32 
33 namespace nc
34 {
35  //============================================================================
36  // Method Description:
45  template<typename dtype>
46  NdArray<dtype> min(const NdArray<dtype>& inArray, Axis inAxis = Axis::NONE)
47  {
48  return inArray.min(inAxis);
49  }
50 } // namespace nc
nc::Axis::NONE
@ NONE
nc::NdArray< dtype >
NdArray.hpp
nc::Axis
Axis
Enum To describe an axis.
Definition: Types.hpp:47
nc
Definition: Coordinate.hpp:45
nc::min
NdArray< dtype > min(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)
Definition: min.hpp:46
nc::NdArray::min
NdArray< dtype > min(Axis inAxis=Axis::NONE) const
Definition: NdArrayCore.hpp:3036