NumCpp  1.0
A C++ implementation of the Python Numpy library
vstack.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:
50  template<typename dtype>
51  NdArray<dtype> vstack(const std::initializer_list<NdArray<dtype> >& inArrayList)
52  {
53  return row_stack(inArrayList);
54  }
55 }
nc::vstack
NdArray< dtype > vstack(const std::initializer_list< NdArray< dtype > > &inArrayList)
Definition: vstack.hpp:51
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:52
nc
Definition: Coordinate.hpp:45