We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I was writing a few tests for broadcast and I noticed an inconstancy. In Base you can broadcast a 2x2 array with a 1x2 array as follows
broadcast
broadcast(+, eye(2), [1 4])
But the equivalent in StaticArrays gives a DimensionMismatch error
StaticArrays
DimensionMismatch
broadcast(+, eye(SMatrix{2, 2}), @SMatrix([1 4]))
The text was updated successfully, but these errors were encountered:
Yes, let's fix that...
Sorry, something went wrong.
9779dd5
Successfully merging a pull request may close this issue.
I was writing a few tests for
broadcast
and I noticed an inconstancy. In Base you can broadcast a 2x2 array with a 1x2 array as followsBut the equivalent in
StaticArrays
gives aDimensionMismatch
errorThe text was updated successfully, but these errors were encountered: