@@ -19,17 +19,17 @@ extra_mods: iso_fortran_env:https://gcc.gnu.org/onlinedocs/gfortran/ISO_005fFORT
19
19
iso_c_binding:https://gcc.gnu.org/onlinedocs/gfortran/ISO_005fC_005fBINDING.html#ISO_005fC_005fBINDING
20
20
print_creation_date : true
21
21
creation_date : %Y-%m-%d %H:%M %z
22
- project_github : https://github.com/certik /fftpack
22
+ project_github : https://github.com/fortran-lang /fftpack
23
23
license : by-sa
24
24
author : Paul N. Swarztrauber & fftpack contributors
25
- github : https://github.com/certik /fftpack
25
+ github : https://github.com/fortran-lang /fftpack
26
26
dbg : true
27
27
parallel : 4
28
28
---
29
29
30
30
[ TOC]
31
31
32
- @warning This API documentation for the certik /fftpack v4.0.0 is a work in progress.
32
+ @warning This API documentation for the fortran-lang /fftpack v4.0.0 is a work in progress.
33
33
34
34
Fortran FFTPACK API Documentation
35
35
=================================
@@ -39,14 +39,14 @@ The documentation for comment markup in source code, running [FORD] and the [FOR
39
39
40
40
[ FORD ] : https://github.com/Fortran-FOSS-Programmers/ford#readme
41
41
[ FORD wiki ] : https://github.com/Fortran-FOSS-Programmers/ford/wiki
42
- [ FORD project file ] : https://github.com/certik /fftpack/blob/master/API-doc-FORD-file.md
42
+ [ FORD project file ] : https://github.com/fortran-lang /fftpack/blob/master/API-doc-FORD-file.md
43
43
44
44
A package of fortran subprograms for the fast fourier transform of periodic and other symmetric sequences.
45
45
46
46
## Getting started
47
47
### Get the code
48
48
``` bash
49
- git clone https://github.com/certik /fftpack.git
49
+ git clone https://github.com/fortran-lang /fftpack.git
50
50
cd fftpack
51
51
```
52
52
@@ -55,12 +55,13 @@ Fortran Package Manager (fpm) is a great package manager and build system for Fo
55
55
You can build using provided ` fpm.toml ` :
56
56
``` bash
57
57
fpm build --flag " -O2"
58
- fpm test --flag " -O2" tstfft
58
+ fpm test --flag " -O2" --list
59
+ fpm test --flag " -O2" < test_name, see ` fpm.toml` or list>
59
60
```
60
61
To use ` fftpack ` within your ` fpm ` project, add the following to your ` fpm.toml ` file:
61
62
``` toml
62
63
[dependencies ]
63
- fftpack = { git =" https://github.com/certik /fftpack.git" }
64
+ fftpack = { git =" https://github.com/fortran-lang /fftpack.git" }
64
65
```
65
66
66
67
## Build with Make
70
71
```
71
72
72
73
## Links
73
- [ netlib/dfftpack1.0(fftpack4.0)] ( http://www.netlib.org/fftpack/ )
74
-
74
+ [ netlib/dfftpack1.0(fftpack4.0)] ( http://www.netlib.org/fftpack/ )
75
+ [ Documents of fft routines in GNU/gsl based on ` netlib/fftpack ` ] ( https://www.gnu.org/software/gsl/doc/html/fft.html# )
76
+ [ Documents of scipy.fftpack] ( https://docs.scipy.org/doc/scipy/reference/fftpack.html )
77
+ [ NACR/FFTPACK 5.1] ( https://www2.cisl.ucar.edu/resources/legacy/fft5 )
0 commit comments