Skip to content

Week2Tutorial1 Exercise 2 Matrix inverse transformation errorΒ #7

@etherealsunshine

Description

@etherealsunshine

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)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions