NumCpp
1.0
A C++ implementation of the Python Numpy library
hstack.hpp
Go to the documentation of this file.
1
#pragma once
30
31
#include "
NumCpp/Functions/column_stack.hpp
"
32
#include "
NumCpp/NdArray.hpp
"
33
34
#include <initializer_list>
35
36
namespace
nc
37
{
38
//============================================================================
39
// Method Description:
51
template
<
typename
dtype>
52
NdArray<dtype>
hstack
(
const
std::initializer_list<
NdArray<dtype>
>& inArrayList)
53
{
54
return
column_stack
(inArrayList);
55
}
56
}
nc::hstack
NdArray< dtype > hstack(const std::initializer_list< NdArray< dtype > > &inArrayList)
Definition:
hstack.hpp:52
column_stack.hpp
nc::NdArray< dtype >
nc::column_stack
NdArray< dtype > column_stack(const std::initializer_list< NdArray< dtype > > &inArrayList)
Definition:
column_stack.hpp:52
NdArray.hpp
nc
Definition:
Coordinate.hpp:45
include
NumCpp
Functions
hstack.hpp
Generated by
1.8.17