NumCpp
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
"
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>
fliplr
(
const
NdArray<dtype>
& inArray)
50
{
51
return
flip
(inArray,
Axis::COL
);
52
}
53
}
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
include
NumCpp
Functions
fliplr.hpp
Generated by
1.8.17