fermi

A minimalist calculator for estimating with distributions
Log | Files | Refs | README

commit 26a535b19e3f1ace70abf99aad86e7c86db20ee6
parent a1e724924bd84c7c59b45026d47a77df631caad5
Author: NunoSempere <nuno.semperelh@protonmail.com>
Date:   Fri, 10 May 2024 20:14:41 +0100

move extras to their own folder

Diffstat:
Dmain | 0
Mmain.go | 4+---
Rf.sh -> more/f.sh | 0
Rlog.f -> more/log.f | 0
Rmodel.f -> more/model.f | 0
5 files changed, 1 insertion(+), 3 deletions(-)

diff --git a/main b/main Binary files differ. diff --git a/main.go b/main.go @@ -12,7 +12,6 @@ import ( const NORMAL90CONFIDENCE = 1.6448536269514727 func boundsToLogParams(low float64, high float64) (float64, float64) { - loglow := math.Log(low) loghigh := math.Log(high) logmean := (loghigh + loglow) / 2.0 @@ -43,9 +42,8 @@ func combineBounds(old_low, old_high, new_low, new_high float64) (float64, float func main() { reader := bufio.NewReader(os.Stdin) - var old_low, old_high float64 // Variables to store the intermediate results + var old_low, old_high float64 - // fmt.Println("Enter two floats separated by a space:") input, _ := reader.ReadString('\n') input = strings.TrimSpace(input) diff --git a/f.sh b/more/f.sh diff --git a/log.f b/more/log.f diff --git a/model.f b/more/model.f