NumCpp  2.1.0
A C++ implementation of the Python Numpy library
hstack.hpp
Go to the documentation of this file.
1 #pragma once
30 
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 } // namespace nc
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