Last active
May 10, 2021 15:41
-
-
Save MeherajUlMahmmud/46bcabde352835ba703399d8e73d02ca to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def calcCofactorMatrix(matrix): | |
| cofactor_matrix = [[float(calcMinor(matrix, r, c)) for c in range(3)] for r in range(3)] | |
| return cofactor_matrix |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment