NumCpp  2.4.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
vstack.hpp
Go to the documentation of this file.
1 #pragma once
29 
31 #include "NumCpp/NdArray.hpp"
32 
33 #include <initializer_list>
34 
35 namespace nc
36 {
37  //============================================================================
38  // Method Description:
49  template<typename dtype>
50  NdArray<dtype> vstack(const std::initializer_list<NdArray<dtype> >& inArrayList)
51  {
52  return row_stack(inArrayList);
53  }
54 } // namespace nc
nc::vstack
NdArray< dtype > vstack(const std::initializer_list< NdArray< dtype > > &inArrayList)
Definition: vstack.hpp:50
row_stack.hpp
nc::NdArray< dtype >
NdArray.hpp
nc::row_stack
NdArray< dtype > row_stack(const std::initializer_list< NdArray< dtype > > &inArrayList)
Definition: row_stack.hpp:51
nc
Definition: Coordinate.hpp:44