Files
gonum/zeta.go
2016-11-17 15:43:19 -05:00

13 lines
355 B
Go

// Copyright ©2016 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.
package mathext
import "github.com/gonum/mathext/internal/cephes"
// Zeta computes the Riemann zeta function of two arguments
func Zeta(x, q float64) float64 {
return cephes.Zeta(x, q)
}