Title: Calculate The Determinant Of A Matrix
Slug: calculate_the_determinant_of_a_matrix
Summary: How to calculate the determinant of a matrix in Python.
Date: 2017-09-02 12:00
Category: Machine Learning
Tags: Vectors Matrices Arrays
Authors: Chris Albon
In [1]:
# Load library
import numpy as np
In [2]:
# Create matrix
matrix = np.array([[1, 2, 3],
[4, 5, 6],
[7, 8, 9]])
In [3]:
# Return determinant of matrix
np.linalg.det(matrix)
Out[3]: