Mortran
   HOME

TheInfoList



OR:

Mortran (More Fortran) is an extension of the Fortran
programming language A programming language is a system of notation for writing computer programs. Most programming languages are text-based formal languages, but they may also be graphical. They are a kind of computer language. The description of a programming ...
used for scientific computation. It introduces syntax changes, including the use of semicolons to end statements, in order to improve readability and flexibility. Mortran code is macro-processed into Fortran code for compilation. Example: IF I.NE.J < OUTPUT I,M(J+1); (' Chain',I4,' ends with ',A4); > > Note that Mortran, like many preprocessors, does not make a complete analysis of the Fortran source and, like many preprocessors, may not always make its assumptions/requirements explicit. Consider, for example, Mortran multiple assignment. From the Mortran ''User Guide'': / I, A(I,K), J / = SQRT(X/2.0); produces the following FORTRAN statements: I = SQRT(X/2.0) A(I,K) = SQRT(X/2.0) J = SQRT(X/2.0) In this example, the produced Fortran implements the multiple assignment correctly only if X is not aliased to I or to A(I,K), assuming the multiple assignment semantics are left to right. The MORTRAN2 processor is written in ANSI standard Fortran 66, with the only extension the ability to assign and compare character data stored in INTEGER variables.


External links


Using MORTRAN 2 (Stanford document)A Users Guide to MORTRAN 2MORTRAN3 Users GuideMortran lecture
(Japanese) from
KEK , known as KEK, is a Japanese organization whose purpose is to operate the largest particle physics laboratory in Japan, situated in Tsukuba, Ibaraki prefecture. It was established in 1997. The term "KEK" is also used to refer to the laboratory ...
(
PDF Portable Document Format (PDF), standardized as ISO 32000, is a file format developed by Adobe in 1992 to present documents, including text formatting and images, in a manner independent of application software, hardware, and operating systems. ...
)
History of Programming Languages:MortranEmacs major mode for editing Mortran source
Fortran programming language family {{Compu-lang-stub