matrix icon indicating copy to clipboard operation
matrix copied to clipboard

Common matrix operations in Go

Results 1 matrix issues
Sort by recently updated
recently updated
newest added

Function `Determinant` calculates wrong values for matrices of dimension 1x1, 4x4, 5x5 and larger. Here's sample code describing my issue. ``` go mat1x1 := [][]float64{ []float64{5}, } fmt.Println(matrix.Determinant(mat1x1)) // Prints...