Skip to content

Commit

Permalink
fixed bug in previous commit.
Browse files Browse the repository at this point in the history
updated readme.
  • Loading branch information
jacobwilliams committed Dec 10, 2015
1 parent badee42 commit 4c4c30e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@ The module requires a modern Fortran compiler (it uses various Fortran 2003/2008
Supported plot types
---------------

* ```matplotlib.pyplot.plot``` -- 2D/3D plot of lines and/or markers.
* ```matplotlib.pyplot.bar``` -- Make a bar plot.
* ```matplotlib.pyplot.contour``` -- Contour plot
* ```matplotlib.pyplot.plot``` -- 2D/3D plot of lines and/or markers
* ```matplotlib.pyplot.bar``` -- bar plot
* ```matplotlib.pyplot.contour``` -- contour plot
* ```matplotlib.pyplot.contourf``` -- filled contour plot

Example
---------------
Expand Down Expand Up @@ -54,7 +55,7 @@ The following example generates a plot of the sine function:
Documentation
---------------

* 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.
* 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.

See also
---------------
Expand Down
1 change: 1 addition & 0 deletions src/tests/test.f90
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ program test
real(wp) :: r2 !! temp variable

!generate some data:
x = [(real(i,wp), i=0,size(x)-1)]/5.0_wp
sx = sin(x)
cx = cos(x)
tx = sx * cx
Expand Down

0 comments on commit 4c4c30e

Please sign in to comment.