 |
NumCpp
1.0
A C++ implementation of the Python Numpy library
|
Go to the documentation of this file.
37 #include <initializer_list>
52 template<
typename dtype>
60 for (
auto& ndarray : inArrayList)
62 finalSize += ndarray.size();
67 for (
auto& ndarray : inArrayList)
70 offset += ndarray.size();
std::uint32_t uint32
Definition: Types.hpp:41
NdArray< dtype > column_stack(const std::initializer_list< NdArray< dtype > > &inArrayList)
Definition: column_stack.hpp:52
OutputIt copy(InputIt first, InputIt last, OutputIt destination) noexcept
Definition: StlAlgorithms.hpp:96
Axis
Enum To describe an axis.
Definition: Types.hpp:47
NdArray< dtype > row_stack(const std::initializer_list< NdArray< dtype > > &inArrayList)
Definition: row_stack.hpp:52
Definition: Coordinate.hpp:45
NdArray< dtype > concatenate(const std::initializer_list< NdArray< dtype > > &inArrayList, Axis inAxis=Axis::NONE)
Definition: concatenate.hpp:53
iterator begin() noexcept
Definition: NdArrayCore.hpp:1091