NumCpp
1.0
A C++ implementation of the Python Numpy library
flipud.hpp
Go to the documentation of this file.
1
#pragma once
30
31
#include "
NumCpp/Core/Types.hpp
"
32
#include "
NumCpp/Functions/flip.hpp
"
33
#include "
NumCpp/NdArray.hpp
"
34
35
namespace
nc
36
{
37
//============================================================================
38
// Method Description:
48
template
<
typename
dtype>
49
NdArray<dtype>
flipud
(
const
NdArray<dtype>
& inArray)
50
{
51
return
flip
(inArray,
Axis::ROW
);
52
}
53
}
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:49
nc
Definition:
Coordinate.hpp:45
nc::flipud
NdArray< dtype > flipud(const NdArray< dtype > &inArray)
Definition:
flipud.hpp:49
Types.hpp
include
NumCpp
Functions
flipud.hpp
Generated by
1.8.17