gonum / matrix

Matrix packages for the Go language [DEPRECATED]
446 stars 53 forks source link

mat64: Exp does not check caps #370

Closed kortschak closed 8 years ago

kortschak commented 8 years ago

Exp has it's own reuseAs because it needs to zero elements and initialise the matrix to I. The caps check was added to reuseAs, and not there as well. Either reuseAsZeroed should be made with the check (and placed near reuseAs) or the checks should be added in Exp.

kortschak commented 8 years ago

Fixed via #371.