mirror of
https://github.com/gonum/gonum.git
synced 2025-10-23 23:23:15 +08:00
8 lines
175 B
Go
8 lines
175 B
Go
package goblas
|
|
|
|
import "github.com/ziutek/blas"
|
|
|
|
func (Blas) Drot(N int, X []float64, incX int, Y []float64, incY int, c, s float64) {
|
|
blas.Drot(N, X, incX, Y, incY, c, s)
|
|
}
|