Suppose I have a 5-dimensional array of the following shape: (2, 3, 4, 5, 6)
For arrays with row-major layout the stride for the 3rd dimension is then equal to 5×6.
For the 4th dimension the stride is 6.
Suppose for me it is useful to have cumulative products from the other end, ie.
2×3 for dimension 3, and
2x3x4 for dimension 4 etc
Do these measures have a name?