Skip to content

Commit ac5fecf

Browse files
authored
Merge pull request #10 from fortran-fans/add_dcosq
add `(i)qct/dcosqi/dcosqf/dcosqb` interfaces for quarter wave data.
2 parents c17acdc + c4d30e6 commit ac5fecf

20 files changed

+606
-63
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ build*
55
*.a
66
*.so
77
*.x
8+
*.mod
9+
*.smod
810

911
# API-doc
1012
API-doc/

API-doc-FORD-file.md

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@ extra_mods: iso_fortran_env:https://gcc.gnu.org/onlinedocs/gfortran/ISO_005fFORT
1919
iso_c_binding:https://gcc.gnu.org/onlinedocs/gfortran/ISO_005fC_005fBINDING.html#ISO_005fC_005fBINDING
2020
print_creation_date: true
2121
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
2323
license: by-sa
2424
author: Paul N. Swarztrauber & fftpack contributors
25-
github: https://github.com/certik/fftpack
25+
github: https://github.com/fortran-lang/fftpack
2626
dbg: true
2727
parallel: 4
2828
---
2929

3030
[TOC]
3131

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

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

4040
[FORD]: https://github.com/Fortran-FOSS-Programmers/ford#readme
4141
[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
4343

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

4646
## Getting started
4747
### Get the code
4848
```bash
49-
git clone https://github.com/certik/fftpack.git
49+
git clone https://github.com/fortran-lang/fftpack.git
5050
cd fftpack
5151
```
5252

@@ -55,12 +55,13 @@ Fortran Package Manager (fpm) is a great package manager and build system for Fo
5555
You can build using provided `fpm.toml`:
5656
```bash
5757
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>
5960
```
6061
To use `fftpack` within your `fpm` project, add the following to your `fpm.toml` file:
6162
```toml
6263
[dependencies]
63-
fftpack = { git="https://github.com/certik/fftpack.git" }
64+
fftpack = { git="https://github.com/fortran-lang/fftpack.git" }
6465
```
6566

6667
## Build with Make
@@ -70,5 +71,7 @@ make
7071
```
7172

7273
## 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)

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ A package of fortran subprograms for the fast fourier transform of periodic and
44
## Getting started
55
### Get the code
66
```bash
7-
git clone https://github.com/certik/fftpack.git
7+
git clone https://github.com/fortran-lang/fftpack.git
88
cd fftpack
99
```
1010

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

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

0 commit comments

Comments
 (0)