30#include <initializer_list>
55 template<
typename dtype,
typename Iterator>
62 return row_stack<dtype>(begin, end);
66 return column_stack<dtype>(begin, end);
87 template<
typename dtype>
90 return detail::stack<dtype>(inArrayList.begin(), inArrayList.end(), inAxis);
103 template<
typename dtype>
106 return detail::stack<dtype>(inArrayList.begin(), inArrayList.end(), inAxis);
#define THROW_INVALID_ARGUMENT_ERROR(msg)
Definition: Error.hpp:37
Holds 1D and 2D arrays, the main work horse of the NumCpp library.
Definition: NdArrayCore.hpp:139
NdArray< dtype > stack(Iterator begin, Iterator end, Axis inAxis)
Definition: stack.hpp:56
Definition: Cartesian.hpp:40
Axis
Enum To describe an axis.
Definition: Enums.hpp:36
NdArray< dtype > stack(std::initializer_list< NdArray< dtype > > inArrayList, Axis inAxis=Axis::NONE)
Definition: stack.hpp:88