Dear Statalist members,
There is a good chance I'm going crazy, but I have the following lines of code (I use Stata 13):
forval a = -0.4(0.1)0.4 {
forval b = -0.05(0.01)0.05 {
forval c = -0.0015(0.0005)0.0015 {
di "`a' ; `b'; `c'"
}
}
}
The outcome is that b never goes to 0.05, but only to 0.04. Any rational explanation of this?
Many thanks in advance!
There is a good chance I'm going crazy, but I have the following lines of code (I use Stata 13):
forval a = -0.4(0.1)0.4 {
forval b = -0.05(0.01)0.05 {
forval c = -0.0015(0.0005)0.0015 {
di "`a' ; `b'; `c'"
}
}
}
The outcome is that b never goes to 0.05, but only to 0.04. Any rational explanation of this?
Many thanks in advance!
Comment