Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jacobwilliams/ffp
Unofficial mirror of Fortran Function Parser from http://www.labfit.net/functionparser.htm
https://github.com/jacobwilliams/ffp
expression-parser fortran function-parser
Last synced: about 6 hours ago
JSON representation
Unofficial mirror of Fortran Function Parser from http://www.labfit.net/functionparser.htm
- Host: GitHub
- URL: https://github.com/jacobwilliams/ffp
- Owner: jacobwilliams
- Created: 2022-06-06T15:48:35.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-06-06T20:18:10.000Z (over 2 years ago)
- Last Synced: 2024-01-30T09:09:45.908Z (9 months ago)
- Topics: expression-parser, fortran, function-parser
- Language: Fortran
- Homepage:
- Size: 13.7 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ffp
Unofficial mirror of Fortran Function Parser from http://www.labfit.net/functionparser.htm### General Information
* Creators: Wilton and Ivomar
* Version: 3.2
* Date added: 10/01/2007
* Date of the last update: 10/01/2007
* License: Free### Fortran Function Parser Description
This code receives a string containing a mathematical expression that can be formed by
- Numbers;
- Brackets;
- Functions (sin, cos, tan, asin, acos, atan, sinh, cosh, tanh, sind, cosd,
tand, log, log10, nint, anint, aint, exp, sqrt, abs, floor);
- Variables;and returns the appropriate numeric answer.
See [Report](http://www.labfit.net/report.htm) with comparative analysis of the three existing open source functions parser in Fortran. To execute this code, create a workspace, unzip the zipped file and insert the following files at the project:
- test.f90
- interpreter.f90