Shape–Stride Notation

S[(shape) : (stride)]
S[(4, 4) : (4, 1)]
Address computation
addr(i, j) = i × 4 + j × 1
Example: addr(2, 3) = 2×4 + 3×1 = 11