Generating C and Fortran Expressions
If you have special-purpose programs written in C or Fortran, you may want to take formulas you have generated in
Mathematica and insert them into the source code of your programs.
Mathematica allows you to convert mathematical expressions into C and Fortran expressions.
| CForm[expr] | write out expr so it can be used in a C program |
| FortranForm[expr] | write out expr for Fortran |
Mathematica output for programming languages.
Here is an expression, written out in standard Mathematica form.
| Out[1]= |  |
|
Here is the expression in Fortran form.
Out[2]//FortranForm= |
| |  |
|
Here is the same expression in C form. Macros for objects like Power are defined in the C header file mdefs.h that comes with most versions of Mathematica.
Out[3]//CForm= |
| |  |
|
You should realize that there are many differences between
Mathematica and C or Fortran. As a result, expressions you translate may not work exactly the same as they do in
Mathematica. In addition, there are so many differences in programming constructs that no attempt is made to translate these automatically.
| Compile[x,expr] | compile an expression into efficient internal code |
A way to compile Mathematica expressions.
One of the common motivations for converting
Mathematica expressions into C or Fortran is to try to make them faster to evaluate numerically. But the single most important reason that C and Fortran can potentially be more efficient than
Mathematica is that in these languages one always specifies up front what type each variable one uses will be—integer, real number, array, and so on.
The
Mathematica function
Compile makes such assumptions within
Mathematica, and generates highly efficient internal code. Usually this code runs not much if at all slower than custom C or Fortran.