Hi
I was wondering if the MWE below yields the expected behaviour.
Why is the result not symmetric?
I would have expected symmetric resulting arrays sizes from this.
Cheers!
let
b = ones(3, 4)
a = ones(1, 2)
x = a .* b[2,2:end-1]
@show size(x)
b = ones(4, 3)
a = ones(2, 1)
x = a .* b[2:end-1,2]
@show size(x)
end