NumCpp
2.12.1
A Templatized Header Only C++ Implementation of the Python NumPy Library
flipud.hpp
Go to the documentation of this file.
1
28
#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:
45
template
<
typename
dtype>
46
NdArray<dtype>
flipud
(
const
NdArray<dtype>
& inArray)
47
{
48
return
flip
(inArray,
Axis::ROW
);
49
}
50
}
// namespace nc
NdArray.hpp
Types.hpp
nc::NdArray
Holds 1D and 2D arrays, the main work horse of the NumCpp library.
Definition:
NdArrayCore.hpp:139
flip.hpp
nc
Definition:
Cartesian.hpp:40
nc::Axis::ROW
@ ROW
nc::flipud
NdArray< dtype > flipud(const NdArray< dtype > &inArray)
Definition:
flipud.hpp:46
nc::flip
NdArray< dtype > flip(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)
Definition:
flip.hpp:47
include
NumCpp
Functions
flipud.hpp
Generated by
1.9.4