Files
gonum/stat/distuv/interfaces.go

23 lines
391 B
Go

// 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.
package distuv
type LogProber interface {
LogProb(float64) float64
}
type Rander interface {
Rand() float64
}
type RandLogProber interface {
Rander
LogProber
}
type Quantiler interface {
Quantile(p float64) float64
}