NumCpp  2.1.0
A C++ implementation of the Python Numpy library
fliplr.hpp
Go to the documentation of this file.
1 #pragma once
30 
31 #include "NumCpp/Core/Types.hpp"
33 #include "NumCpp/NdArray.hpp"
34 
35 namespace nc
36 {
37  //============================================================================
38  // Method Description:
48  template<typename dtype>
50  {
51  return flip(inArray, Axis::COL);
52  }
53 } // namespace nc
flip.hpp
nc::NdArray< dtype >
NdArray.hpp
nc::flip
NdArray< dtype > flip(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)
Definition: flip.hpp:49
nc
Definition: Coordinate.hpp:45
Types.hpp
nc::Axis::COL
@ COL
nc::fliplr
NdArray< dtype > fliplr(const NdArray< dtype > &inArray)
Definition: fliplr.hpp:49