I've been doing some statistics work with Stata recently and not enjoying it very much. It doesn't feel to me like it's a "proper" programming language: in particular I don't think there's a way to loop until a condition is met. Am I right in my feeling, or is Stata really Turing-complete?
feedback
|
|
I've never heard of Stata before but the webpage brags that it has "if, while" and "looping and branching". Wikibooks has this example:
I don't know what "proper" programming language means but at first glance it definitely appears to be Turing-complete. | |||
feedback
|
|
A "proper" programming language in the sense that you could build a webpage or GUI with it? Of course not. But that's a bit extreme. You can certainly write loops with .ado and .do files; i would say it is turing complete. | |||
feedback
|
|
@eric.a.booth: I think your example is strange. I'm not sure I've ever seen Also, note that Stata doesn't test the loop before you run it, and will allow itself to get caught in an infinite loop.
| |||||
feedback
|
|
While you can use the -while-, -if, -else- commands to perform looping until a condition is met, it's usually a better idea in Stata to use the -foreach- or -forvalues- loops in their place.
or
it's usually better (and more intuitive) to instead to do:
-- No -if-, -else-, or -break- conditions needed. See -help forvalues- or -help foreach- in Stata for details. Eric A. Booth | ^NOTE: the while-else loop in my original post was removed--thanks for the heads-up, Keith. The -else- part was intended for the if{] else{} loop example only. Regardless, the point of my post wasn't to suggest the use of a while/else or if/else loop, it was that -foreach-/-forvalues- are usually a preferred approach. | ||||
|
feedback
|