Skip to content

Commit 143172f

Browse files
atcFrequencyGridSource.vb -- output 3 sig digs for variance
1 parent de41d6a commit 143172f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

atcIntegratedDesignFlow/atcFrequencyGridSource.vb

+2-2
Original file line numberDiff line numberDiff line change
@@ -752,7 +752,7 @@ Public Class atcFrequencyGridSource
752752
lExpTab.Value(lExpTabFldCtr + 2) = DoubleToString(lAttributes.GetValue(lAttrName & lRecurrence, 0), , "0.000", "0.000")
753753
'K Value (export only), variance of estimate and confidence intervals
754754
lExpTab.Value(lExpTabFldCtr + 3) = DoubleToString(lAttributes.GetValue(lAttrName & lRecurrence & " K Value", 0), , "0.000", "0.000")
755-
lExpTab.Value(lExpTabFldCtr + 4) = DoubleToString(lAttributes.GetValue(lAttrName & lRecurrence & " Variance of Estimate", 0), , "0.000", "0.000")
755+
lExpTab.Value(lExpTabFldCtr + 4) = DoubleToString(lAttributes.GetValue(lAttrName & lRecurrence & " Variance of Estimate", 0), , , "0.000", , 3)
756756
lExpTab.Value(lExpTabFldCtr + 5) = DoubleToString(lAttributes.GetValue(lAttrName & lRecurrence & " CI Lower", 0), , "0.000", "0.000")
757757
lExpTab.Value(lExpTabFldCtr + 6) = DoubleToString(lAttributes.GetValue(lAttrName & lRecurrence & " CI Upper", 0), , "0.000", "0.000")
758758
End If
@@ -788,7 +788,7 @@ Public Class atcFrequencyGridSource
788788
Else
789789
lThisRow &= DoubleToString(lAttributes.GetValue(lAttrName & lRecurrence, 0), , "0.000", "0.000").PadLeft(11)
790790
'K Value (export only), variance of estimate and confidence intervals
791-
lThisRow &= DoubleToString(lAttributes.GetValue(lAttrName & lRecurrence & " Variance of Estimate", 0), , "0.000", "0.000").PadLeft(11)
791+
lThisRow &= DoubleToString(lAttributes.GetValue(lAttrName & lRecurrence & " Variance of Estimate", 0), , , "0.000", , 3).PadLeft(11)
792792
lThisRow &= DoubleToString(lAttributes.GetValue(lAttrName & lRecurrence & " CI Lower", 0), , "0.000", "0.000").PadLeft(11)
793793
lThisRow &= DoubleToString(lAttributes.GetValue(lAttrName & lRecurrence & " CI Upper", 0), , "0.000", "0.000").PadLeft(11)
794794
End If

0 commit comments

Comments
 (0)