Skip to content

Commit 4c4c30e

Browse files
committed
fixed bug in previous commit.
updated readme.
1 parent badee42 commit 4c4c30e

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@ The module requires a modern Fortran compiler (it uses various Fortran 2003/2008
1616
Supported plot types
1717
---------------
1818

19-
* ```matplotlib.pyplot.plot``` -- 2D/3D plot of lines and/or markers.
20-
* ```matplotlib.pyplot.bar``` -- Make a bar plot.
21-
* ```matplotlib.pyplot.contour``` -- Contour plot
19+
* ```matplotlib.pyplot.plot``` -- 2D/3D plot of lines and/or markers
20+
* ```matplotlib.pyplot.bar``` -- bar plot
21+
* ```matplotlib.pyplot.contour``` -- contour plot
22+
* ```matplotlib.pyplot.contourf``` -- filled contour plot
2223

2324
Example
2425
---------------
@@ -54,7 +55,7 @@ The following example generates a plot of the sine function:
5455
Documentation
5556
---------------
5657

57-
* The API documentation for the current ```master``` branch can be found [here](http://jacobwilliams.github.io/pyplot-fortran/). This is generated by processing the source files with [FORD](https://github.com/cmacmackin/ford). Note that the shell script will also generate these files automatically in the ```doc``` folder, assuming you have FORD installed.
58+
* The API documentation for the current ```master``` branch can be found [here](http://jacobwilliams.github.io/pyplot-fortran/). This is generated by processing the source files with [FORD](https://github.com/cmacmackin/ford). Note that the build script will also generate these files automatically in the ```doc``` folder, assuming you have FORD installed.
5859

5960
See also
6061
---------------

src/tests/test.f90

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ program test
2727
real(wp) :: r2 !! temp variable
2828

2929
!generate some data:
30+
x = [(real(i,wp), i=0,size(x)-1)]/5.0_wp
3031
sx = sin(x)
3132
cx = cos(x)
3233
tx = sx * cx

0 commit comments

Comments
 (0)