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
matrix!
Matrix
Add a matrix! macro that supports the following Matrix struct initialization idioms:
let m = matrix!( [1, 2, 3], [4, 5, 6], [7, 8, 9] );
The following will make a 3 x 5 Matrix filled with 1's.
let m = matrix!( [1; 5], [1; 5], [1; 5] );
This macro will take row vectors only.
The text was updated successfully, but these errors were encountered:
Added in #84
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Add a
matrix!
macro that supports the followingMatrix
struct initialization idioms:With row vectors that define each ordered scalar value
With row vectors that use an array-like repetition pattern
The following will make a 3 x 5 Matrix filled with 1's.
This macro will take row vectors only.
The text was updated successfully, but these errors were encountered: