![]() |
NumCpp
2.14.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
|
Stack 1-D arrays as columns into a 2-D array.
NumPy Reference: https://www.numpy.org/devdocs/reference/generated/numpy.column_stack.html
begin | iterator to the beginning of the span |
end | iterator to one past the end of the span |
Join a sequence of arrays along an existing axis.
NumPy Reference: https://www.numpy.org/devdocs/reference/generated/numpy.concatenate.html
begin | the begin iterator |
end | the end iterator |
inAxis | (Optional, default NONE) |
NdArray< dtype > nc::detail::deleteColumnIndices | ( | const NdArray< dtype > & | inArray, |
Indices | inIndices | ||
) |
Return a new array with sub-arrays along the col axis deleted.
inArray | |
inIndices |
NdArray< dtype > nc::detail::deleteRowIndices | ( | const NdArray< dtype > & | inArray, |
Indices | inIndices | ||
) |
Return a new array with sub-arrays along the row axis deleted.
inArray | |
inIndices |
Stack arrays in sequence vertically (row wise).
begin | iterator to the beginning of the span |
end | iterator to one past the end of the span |
Compute the variance along the specified axis.
NumPy Reference: https://www.numpy.org/devdocs/reference/generated/numpy.stack.html
begin | iterator to the beginning of the span |
end | iterator to one past the end of the span |
inAxis | the axis to stack |