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 ran into this:
@MMatrix [1 1; 1 1.0]
errors with Size mismatch in Static Array parameters. Got size Tuple{2, 2}, dimension 2 and length 1. The same works for SMatrix:
Size mismatch in Static Array parameters. Got size Tuple{2, 2}, dimension 2 and length 1.
@SMatrix [1 1; 1 1.0]
turning all elements into float64. The workaround is this:
@MMatrix [1.0 1.0; 1.0 1.0]
I would expect MMatrix to behave like SMatrix. Also, for MVector it works:
@MVector [1, 1.0]
The text was updated successfully, but these errors were encountered:
@SArray
constructor
Successfully merging a pull request may close this issue.
I ran into this:
errors with
Size mismatch in Static Array parameters. Got size Tuple{2, 2}, dimension 2 and length 1.
The same works for SMatrix:
turning all elements into float64. The workaround is this:
I would expect MMatrix to behave like SMatrix.
Also, for MVector it works:
The text was updated successfully, but these errors were encountered: