Earlier quoted context omitted.
Why? Any objective reason?
One thing that for years made Fortran stand out is that the language explicitly assumes all arrays passed in to a subprogram have no overlaps. Thus a Fortran compiler doesn't have to do anything special to make sure it preserves order when storing and accessing from two different arrays. Therefore the compiler can be much more aggressive about unrolling loops and changing the order of operations. By contrast, given a…
What are Fortran and Cobol used for today?
31–40 of 72 posts
Re: What are Fortran and Cobol used for today?
#32Re: What are Fortran and Cobol used for today?
#33Re: What are Fortran and Cobol used for today?
#34Re: What are Fortran and Cobol used for today?
#35As an ex-COBOL programmer, I did some research in this area and I uncovered the following (from a 2009 blog post of mine). -- Do a little research into COBOL and a few interesting things jump out at you. Some of this information is from Gartner Group and the rest can easily be verified by doing even a brief survey of the field. Taking the following bits of information: * 75% of the world's business data passes throug…
I'd say that's an underestimate. You can make huge sums simply by knowing COBOL + having financial expertise. If you can actually migrate COBOL systems in a natural way that's likely a multi-billion dollar problem at this point.
Re: What are Fortran and Cobol used for today?
#36Is it dead and buried at this point?
I threw out the box to Turbo Pascal only a decade ago.
Re: What are Fortran and Cobol used for today?
#37Where is the Pascal love? Is it dead and buried at this point? I threw out the box to Turbo Pascal only a decade ago.
Re: What are Fortran and Cobol used for today?
#38I'm kinda blown away that this question hasn't been closed on stack overflow already. The mods are usually so aggressive about discussion-type questions.
This isn't a discussion-type topic. It's a question that has a non-subjective answer that doesn't depend on one's opinion. That being said, it might be migrated to programmers.SE and now that the question made it to HN the mods might notice it and actually do so, but I hope they won't.
Re: What are Fortran and Cobol used for today?
#39Physicists, or at least the ones I know, tend to use FORTRAN almost exclusively.
Re: What are Fortran and Cobol used for today?
#40Earlier quoted context omitted.
A lot of NumPy/SciPy (Python's scientific computation libraries) are written in Fortran too: http://docs.scipy.org/doc/numpy/user/install.html
Yup, mostly because they are the same libraries that R uses. I really feel like I may need to learn Fortran at some point, given its ridiculously good numerical capabilities.