https://github.com/beliavsky/fortrancode
Various Fortran codes
https://github.com/beliavsky/fortrancode
binomial fortran monte-carlo negative-binomial negative-binomial-distribution rng
Last synced: 8 months ago
JSON representation
Various Fortran codes
- Host: GitHub
- URL: https://github.com/beliavsky/fortrancode
- Owner: Beliavsky
- License: mit
- Created: 2024-08-25T13:29:11.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-06T22:20:37.000Z (about 1 year ago)
- Last Synced: 2025-01-30T07:42:41.745Z (10 months ago)
- Topics: binomial, fortran, monte-carlo, negative-binomial, negative-binomial-distribution, rng
- Language: Fortran
- Homepage:
- Size: 42 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FortranCode
Fortran codes for strings, random number generation from various distributions, the negative binomial distribution, and approximations for sine and cosine. Create executables with
```
gfortran -o xstring_funcs.exe string_funcs.f90 xstring_funcs.f90
gfortran -o xbinomial.exe kind.f90 binomial.f90 xbinomial.f90
gfortran -o xsim_negative_binomial.exe kind.f90 binomial.f90 xsim_negative_binomial.f90
gfortran -o xtrig.exe kind.f90 trig.f90 xtrig.f90
gfortran -o xxrandom.exe kind.f90 random.f90 xxrandom.f90
```