On Tuesday, 3 September 2024 at 12:09:36 UTC, monkyyy wrote: > I think your wrong about what remove does, > `axes=axes.remove(axis.length.uniform)` Duh ! You're right, remove does take indices or ranges. Using filter, now ;) `axes.filter!(a => a != axis).array` thanks.