You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,13 +6,19 @@ A simple module for generating plots from Fortran using Python's matplotlib.pypl
6
6
Overview
7
7
---------------
8
8
9
-
Currently, this module can be used to generate simple x-y plots from Fortran. Eventually, it may be expanded to provide additional features and other types of plots.
9
+
Currently, this module can be used to generate simple plots from Fortran. Eventually, it may be expanded to provide additional features and other types of plots.
10
10
11
11
The way it works is simply to generate a Python script with the plotting code, which
12
12
is then executed from the command line using the Fortran ```execute_command_line``` function.
13
13
14
14
The module requires a modern Fortran compiler (it uses various Fortran 2003/2008 features such as deferred-length strings). It should work fine with the latest gfortran or ifort compilers. A simple script ```build.sh``` is provided for building the library and test program (requires gfortran and [FoBiS](https://github.com/szaghi/FoBiS)). It will also build the HTML documentation if [ROBODoc](https://github.com/gumpu/ROBODoc) is installed.
15
15
16
+
Supported plot types
17
+
---------------
18
+
19
+
*```matplotlib.pyplot.plot``` -- 2D plot of lines and/or markers.
0 commit comments