frlearn.array_functions.last#
- frlearn.array_functions.last(a, k: int, axis: int = -1)#
Returns the
k
last values ofa
along the specified axis, in reverse order.- Parameters:
- andarray
Input array of values.
- k: int
Number of values to return. Should be a positive integer not larger than
a
alongaxis
.- axisint, default=-1
The axis along which values are selected.
- Returns:
- last_along_axisndarray
An array with the same shape as
a
, with the specified axis reduced according to the value ofk
.