2018-10-14 03:07:28 +02:00
|
|
|
package math
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2018-10-14 19:06:27 +02:00
|
|
|
"math"
|
|
|
|
|
2018-10-14 03:07:28 +02:00
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/core"
|
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/values"
|
2019-02-13 19:31:18 +02:00
|
|
|
"github.com/MontFerret/ferret/pkg/runtime/values/types"
|
2018-10-14 03:07:28 +02:00
|
|
|
)
|
|
|
|
|
2018-10-14 19:06:27 +02:00
|
|
|
// StandardDeviationSample returns the sample standard deviation of the values in a given array.
|
|
|
|
// @params (Array) - Array of numbers.
|
|
|
|
// @returns (Float) - The sample standard deviation.
|
2018-10-14 03:07:28 +02:00
|
|
|
func StandardDeviationSample(_ context.Context, args ...core.Value) (core.Value, error) {
|
2019-05-03 23:10:34 +02:00
|
|
|
err := core.ValidateArgs(args, 1, 1)
|
2018-10-14 03:07:28 +02:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return values.None, err
|
|
|
|
}
|
|
|
|
|
2019-02-13 19:31:18 +02:00
|
|
|
err = core.ValidateType(args[0], types.Array)
|
2018-10-14 03:07:28 +02:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return values.None, err
|
|
|
|
}
|
|
|
|
|
|
|
|
arr := args[0].(*values.Array)
|
|
|
|
|
|
|
|
if arr.Length() == 0 {
|
|
|
|
return values.NewFloat(math.NaN()), nil
|
|
|
|
}
|
|
|
|
|
2019-03-29 16:48:51 +02:00
|
|
|
vp := variance(arr, values.NewInt(1))
|
2018-10-14 03:07:28 +02:00
|
|
|
|
|
|
|
return values.NewFloat(math.Pow(float64(vp), 0.5)), nil
|
|
|
|
}
|