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
You should not compute x_B as x_B = inv(B)*b, but as the solution of a linear system: x_B = B\b, and check that the rank of B is equal to m
The text was updated successfully, but these errors were encountered:
Indeed. inv(B) was used just for education purpose. Perhaps I should also add B\b. Thanks.
inv(B)
B\b
Sorry, something went wrong.
No branches or pull requests
You should not compute x_B as x_B = inv(B)*b, but as the solution of a linear system: x_B = B\b, and check that the rank of B is equal to m
The text was updated successfully, but these errors were encountered: