You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think i know why it's not working. When i type DMatrix::from_vec and i press ctrl+space it shows me a lot of alternatives, even tho it is going to call only one of them, some of them have the right intellisense but some of them not,
In the image im selecting the alternative that has the right function signature, but the first alternative has the wrong signature, therefore making the whole file receive a red flag for the "mismatched-arg-count error"
When using the nalgebra::DMatrix::from_vec(2, 2, vec![1.0, 1.0, 1.0, 1.0]) it indicates the following error:
But when i run the code using cargo run it runs perfectly well, ive tried to delete the target folder, etc... but nothing seems to work
The text was updated successfully, but these errors were encountered: