x .^ 2 is formatted as x.^2 (the spaces are removed). Is this a deliberate design decision? I would rather that the operator be spaced like other operators (i.e., x .^ 2).
I reviewed the operator associativities and it seems like it would be better to keep the formatting as-is because ^ and .^ are both right-associative (unlike how .+ becomes left-associative).
x .^ 2
is formatted asx.^2
(the spaces are removed). Is this a deliberate design decision? I would rather that the operator be spaced like other operators (i.e.,x .^ 2
).