BasicLinearAlgebraToolsPurePy icon indicating copy to clipboard operation
BasicLinearAlgebraToolsPurePy copied to clipboard

Basic Linear Algebra Tools in Pure Python without Numpy or Scipy

Results 3 BasicLinearAlgebraToolsPurePy issues
Sort by recently updated
recently updated
newest added

Hi, I'm implementing the `determinant_fast` function and test this with the following matrix `[[1, 2, 3, 4, 5], [4, 5, 6, 4, 3], [0, 0, 0, 1, 5], [1, 3,...

AttributeError: module 'numpy' has no attribute 'copy_matrix'

## The Algorithm's Issue When trying to implement the matrix multiplication algorithm in this library (getting the REF (Row Echelon Form) with Gaussian Elimination and then multiplying the main diagonal...