matrix: imported matrix as a subtree

This commit is contained in:
Brendan Tracey
2017-05-23 00:02:48 -06:00
68 changed files with 18468 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
// Copyright ©2015 The gonum Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//+build cblas
package mat64
import (
"github.com/gonum/blas/blas64"
"github.com/gonum/blas/cgo"
)
func init() {
blas64.Use(cgo.Implementation{})
}