F90_MATLAB contains examples of how a FORTRAN90 program can interact with MATLAB.
In these examples, the interaction is done through the SYSTEM command, which allows a FORTRAN90 program to issue a command to the operating system, and to receive a result flag indicating the successful completion or failure of that command.
The SYSTEM command is not a standard or intrinsic routine defined by the FORTRAN standard. However, it is often available to FORTRAN programmers on UNIX systems. In particular, the GNU G95 and IBM XLF compilers include this routine.
Data can be passed between MATLAB and FORTRAN using text files.
F90 is a directory which includes some examples on features of the FORTRAN90 language.
G95_INTRINSICS is a directory which includes some examples of the use of intrinsic functions included with the G95 compiler.
MATLAB shows some examples of MATLAB script files and M-files.
MATLAB_BATCH shows some examples of using MATLAB in batch mode.
MATLAB_F77 shows some examples of MATLAB calling FORTRAN77 subroutines or functions.
XLF_INTRINSICS is a directory which includes some examples of the use of intrinsic functions peculiar to the IBM XLF FORTRAN compiler.
MATRIX_MULTIPLY shows how a FORTRAN90 program can cooperate with MATLAB. The FORTRAN90 program generates two matrices A and B, write them to files, and invokes MATLAB with a particular M-file. The M-file reads the matrices from the files, computes the product C and writes it to a file. The FORTRAN90 program resumes execution, reading the C file and reporting the result.
You can go up one level to the FORTRAN90 source codes.