Documentation ¶
Index ¶
- func Bisect(f func(x float64) float64, x0, x1 float64) (root float64)
- func Falsi(f func(x float64) float64, s, t float64) (r float64)
- func Ridder(f func(x float64) float64, a, b float64) (r float64)
- func Romberg(start float64, end float64, steps int, fp func(float64) float64) (area float64)
- func Secant(f func(x float64) float64, x0, x1 float64) (root float64)
- func Simpsons(start float64, end float64, steps int, fp func(float64) float64) float64
- func Simpsons38(start float64, end float64, steps int, fp func(float64) float64) float64
- func Simpsons38Composite(start float64, end float64, steps int, fp func(float64) float64) float64
- func SimpsonsAdaptive(start float64, end float64, steps int, f func(float64) float64) float64
- func SimpsonsComposite(start float64, end float64, steps int, fp func(float64) float64) float64
- func Trapezoid(start float64, end float64, steps int, fp func(float64) float64) float64
- func TrapezoidFast(start float64, end float64, steps int, fp func(float64) float64) float64
- func TrapezoidIterative(start float64, end float64, steps int, fp func(float64) float64) float64
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Simpsons38 ¶
func Simpsons38Composite ¶
func SimpsonsAdaptive ¶
thin function -- prime the recursive pump and make the API match our other integration routines
func SimpsonsComposite ¶
func TrapezoidFast ¶
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.