Another peep inside you would lOVE
- Sundry Fires In Rain
- Oct 21, 2022
- 1 min read
Updated: Feb 25
Here is the math-only treat :
import numpy as np
np.set_printoptions(threshold=np.inf)
import fractions
np.set_printoptions(formatter={'all':lambda x:str(fractions.Fraction(x).limit_denominator())})
# Define the matrix as a list of lists (each inner list is a row of the matrix)
matrix = np.array([ Enter your hugeee matrix])
print(np.linalg.inv(matrix))


Comments