Skip to content

Instantly share code, notes, and snippets.

@MeherajUlMahmmud
Last active May 10, 2021 15:41
Show Gist options
  • Select an option

  • Save MeherajUlMahmmud/46bcabde352835ba703399d8e73d02ca to your computer and use it in GitHub Desktop.

Select an option

Save MeherajUlMahmmud/46bcabde352835ba703399d8e73d02ca to your computer and use it in GitHub Desktop.
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