Skip to content
New issue

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

Week2Tutorial1 Exercise 2 Matrix inverse transformation error #7

Open
etherealsunshine opened this issue Jun 3, 2024 · 0 comments
Open

Comments

@etherealsunshine
Copy link

Thank you for the course, it's really helpful!

There's a minor typo in the code for plotting the transformation of A and then the additional transformation of 𝐴−1

A = np.array([[1,2], [2,1]])
A_inv = np.linalg.inv(M)
plot_linear_transformations(A, A_inv)

where M is not defined and it should be:

A = np.array([[1,2], [2,1]])
A_inv = np.linalg.inv(A)
plot_linear_transformations(A, A_inv)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant