 |
NumCpp
2.4.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
|
Go to the documentation of this file.
36 #include <initializer_list>
51 template<
typename dtype>
59 for (
auto& ndarray : inArrayList)
61 finalSize += ndarray.size();
66 for (
auto& ndarray : inArrayList)
69 offset += ndarray.size();
std::uint32_t uint32
Definition: Types.hpp:40
NdArray< dtype > column_stack(const std::initializer_list< NdArray< dtype > > &inArrayList)
Definition: column_stack.hpp:51
OutputIt copy(InputIt first, InputIt last, OutputIt destination) noexcept
Definition: StlAlgorithms.hpp:95
Axis
Enum To describe an axis.
Definition: Types.hpp:46
NdArray< dtype > row_stack(const std::initializer_list< NdArray< dtype > > &inArrayList)
Definition: row_stack.hpp:51
Definition: Coordinate.hpp:44
#define THROW_INVALID_ARGUMENT_ERROR(msg)
Definition: Error.hpp:36
NdArray< dtype > concatenate(const std::initializer_list< NdArray< dtype > > &inArrayList, Axis inAxis=Axis::NONE)
Definition: concatenate.hpp:52
iterator begin() noexcept
Definition: NdArrayCore.hpp:1087