NumCpp
2.4.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
flipud.hpp
Go to the documentation of this file.
1
#pragma once
29
30
#include "
NumCpp/Core/Types.hpp
"
31
#include "
NumCpp/Functions/flip.hpp
"
32
#include "
NumCpp/NdArray.hpp
"
33
34
namespace
nc
35
{
36
//============================================================================
37
// Method Description:
47
template
<
typename
dtype>
48
NdArray<dtype>
flipud
(
const
NdArray<dtype>
& inArray)
49
{
50
return
flip
(inArray,
Axis::ROW
);
51
}
52
}
// namespace nc
nc::Axis::ROW
@ ROW
flip.hpp
nc::NdArray< dtype >
NdArray.hpp
nc::flip
NdArray< dtype > flip(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)
Definition:
flip.hpp:48
nc
Definition:
Coordinate.hpp:44
nc::flipud
NdArray< dtype > flipud(const NdArray< dtype > &inArray)
Definition:
flipud.hpp:48
Types.hpp
include
NumCpp
Functions
flipud.hpp
Generated by
1.8.17