Closed
Description
I find myself writing a lot of this:
A = reshape(A, N, div(length(A), N))
Instead, I'd like to write
A = reshape(A, N, :)
I find myself writing a lot of this:
A = reshape(A, N, div(length(A), N))
Instead, I'd like to write
A = reshape(A, N, :)