30 #include <initializer_list>
50 template<
typename dtype>
58 for (
auto& ndarray : inArrayList)
60 finalSize += ndarray.size();
65 for (
auto& ndarray : inArrayList)
68 offset += ndarray.size();
#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:138
iterator begin() noexcept
Definition: NdArrayCore.hpp:1258
OutputIt copy(InputIt first, InputIt last, OutputIt destination) noexcept
Definition: StlAlgorithms.hpp:97
Definition: Coordinate.hpp:45
NdArray< dtype > column_stack(const std::initializer_list< NdArray< dtype >> &inArrayList)
Definition: column_stack.hpp:49
NdArray< dtype > row_stack(const std::initializer_list< NdArray< dtype >> &inArrayList)
Definition: row_stack.hpp:49
Axis
Enum To describe an axis.
Definition: Types.hpp:47
NdArray< dtype > concatenate(const std::initializer_list< NdArray< dtype >> &inArrayList, Axis inAxis=Axis::NONE)
Definition: concatenate.hpp:51
std::uint32_t uint32
Definition: Types.hpp:40