|
@@ -19,11 +19,11 @@ function _calc
|
19
|
19
|
echo "scale=$scale; $@" | bc -l | sed 's/^\./0./'
|
20
|
20
|
}
|
21
|
21
|
|
|
22
|
+width=88
|
22
|
23
|
function _divider
|
23
|
24
|
{
|
24
|
25
|
divider=------------------------------
|
25
|
26
|
divider=" +"$divider$divider$divider"+"
|
26
|
|
- width=88
|
27
|
27
|
|
28
|
28
|
printf "%$width.${width}s+\n" "$divider"
|
29
|
29
|
}
|
|
@@ -91,10 +91,17 @@ if [[ $total_estimate > 0 ]]; then
|
91
|
91
|
|
92
|
92
|
echo -e "\nThree point estimates\n"
|
93
|
93
|
|
94
|
|
- echo -e " 1 Sigma - 68% confidence:" $(_calc "$total_estimate - $total_variance") "-" $(_calc "$total_estimate + $total_variance")
|
95
|
|
- echo -e " 2 Sigma - 95% confidence:" $(_calc "$total_estimate - 2 * $total_variance") "-" $(_calc "$total_estimate + 2 * $total_variance")
|
96
|
|
- echo -e " 2 Sigma - 99.7% confidence:" $(_calc "$total_estimate - 3 * $total_variance") "-" $(_calc "$total_estimate + 2 * $total_variance")
|
|
94
|
+ width=42
|
|
95
|
+ tpeformat=" | %-13s |%11s |%10s |\n"
|
97
|
96
|
|
|
97
|
+ _divider
|
|
98
|
+ printf "$tpeformat" "Confidence:"
|
|
99
|
+ _divider
|
|
100
|
+ printf "$tpeformat" "1 Sigma - 68%" $(_calc "$total_estimate - $total_variance") $(_calc "$total_estimate + $total_variance")
|
|
101
|
+ printf "$tpeformat" "1 Sigma - 95%" $(_calc "$total_estimate - 2 * $total_variance") $(_calc "$total_estimate + 2 * $total_variance")
|
|
102
|
+ printf "$tpeformat" "1 Sigma - 99%" $(_calc "$total_estimate - 3 * $total_variance") $(_calc "$total_estimate + 3 * $total_variance")
|
|
103
|
+ _divider
|
|
104
|
+
|
98
|
105
|
fi
|
99
|
106
|
|
100
|
107
|
echo -e "\n"
|