Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ build*
*.a
*.so
*.x
*.mod
*.smod

# API-doc
API-doc/
21 changes: 12 additions & 9 deletions API-doc-FORD-file.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@ extra_mods: iso_fortran_env:https://gcc.gnu.org/onlinedocs/gfortran/ISO_005fFORT
iso_c_binding:https://gcc.gnu.org/onlinedocs/gfortran/ISO_005fC_005fBINDING.html#ISO_005fC_005fBINDING
print_creation_date: true
creation_date: %Y-%m-%d %H:%M %z
project_github: https://github.com/certik/fftpack
project_github: https://github.com/fortran-lang/fftpack
license: by-sa
author: Paul N. Swarztrauber & fftpack contributors
github: https://github.com/certik/fftpack
github: https://github.com/fortran-lang/fftpack
dbg: true
parallel: 4
---

[TOC]

@warning This API documentation for the certik/fftpack v4.0.0 is a work in progress.
@warning This API documentation for the fortran-lang/fftpack v4.0.0 is a work in progress.

Fortran FFTPACK API Documentation
=================================
Expand All @@ -39,14 +39,14 @@ The documentation for comment markup in source code, running [FORD] and the [FOR

[FORD]: https://github.com/Fortran-FOSS-Programmers/ford#readme
[FORD wiki]: https://github.com/Fortran-FOSS-Programmers/ford/wiki
[FORD project file]: https://github.com/certik/fftpack/blob/master/API-doc-FORD-file.md
[FORD project file]: https://github.com/fortran-lang/fftpack/blob/master/API-doc-FORD-file.md

A package of fortran subprograms for the fast fourier transform of periodic and other symmetric sequences.

## Getting started
### Get the code
```bash
git clone https://github.com/certik/fftpack.git
git clone https://github.com/fortran-lang/fftpack.git
cd fftpack
```

Expand All @@ -55,12 +55,13 @@ Fortran Package Manager (fpm) is a great package manager and build system for Fo
You can build using provided `fpm.toml`:
```bash
fpm build --flag "-O2"
fpm test --flag "-O2" tstfft
fpm test --flag "-O2" --list
fpm test --flag "-O2" <test_name, see `fpm.toml` or list>
```
To use `fftpack` within your `fpm` project, add the following to your `fpm.toml` file:
```toml
[dependencies]
fftpack = { git="https://github.com/certik/fftpack.git" }
fftpack = { git="https://github.com/fortran-lang/fftpack.git" }
```

## Build with Make
Expand All @@ -70,5 +71,7 @@ make
```

## Links
[netlib/dfftpack1.0(fftpack4.0)](http://www.netlib.org/fftpack/)

[netlib/dfftpack1.0(fftpack4.0)](http://www.netlib.org/fftpack/)
[Documents of fft routines in GNU/gsl based on `netlib/fftpack`](https://www.gnu.org/software/gsl/doc/html/fft.html#)
[Documents of scipy.fftpack](https://docs.scipy.org/doc/scipy/reference/fftpack.html)
[NACR/FFTPACK 5.1](https://www2.cisl.ucar.edu/resources/legacy/fft5)
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ A package of fortran subprograms for the fast fourier transform of periodic and
## Getting started
### Get the code
```bash
git clone https://github.com/certik/fftpack.git
git clone https://github.com/fortran-lang/fftpack.git
cd fftpack
```

Expand All @@ -19,7 +19,7 @@ fpm test --flag "-O2" <test_name, see `fpm.toml` or list>
To use `fftpack` within your `fpm` project, add the following to your `fpm.toml` file:
```toml
[dependencies]
fftpack = { git="https://github.com/certik/fftpack.git" }
fftpack = { git="https://github.com/fortran-lang/fftpack.git" }
```

## Build with Make
Expand All @@ -31,4 +31,5 @@ make
## Links
[netlib/dfftpack1.0(fftpack4.0)](http://www.netlib.org/fftpack/)
[Documents of fft routines in GNU/gsl based on `netlib/fftpack`](https://www.gnu.org/software/gsl/doc/html/fft.html#)
[Documents of scipy.fftpack](https://docs.scipy.org/doc/scipy/reference/fftpack.html)
[Documents of scipy.fftpack](https://docs.scipy.org/doc/scipy/reference/fftpack.html)
[NACR/FFTPACK 5.1](https://www2.cisl.ucar.edu/resources/legacy/fft5)
Loading