This repository was archived by the owner on Dec 10, 2018. It is now read-only.

Description
package main
import (
"fmt"
"math"
"github.com/gonum/matrix/mat64"
)
func main() {
a := mat64.NewDense(1, 1, nil)
fmt.Println(mat64.Cond(a, 1))
fmt.Println(mat64.Cond(a, 2))
fmt.Println(mat64.Cond(a, math.Inf(1)))
}
This may be a bizarre quirk of the lapack function, but this should not be the final output from mat64.