numo-fftw 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/README.md +8 -5
- data/ext/numo/fftw/fftw.erb.c +1 -1
- data/ext/numo/fftw/version.h +1 -1
- data/numo-fftw.gemspec +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 6ac026e2cf0b161694e66b02240f17cad4f67637951c031211dca33f4d47c190
|
4
|
+
data.tar.gz: 64afc4022f50cae84c858dc066fd76b2dc2f977fefa56f61b9739b32136d5121
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 50d7bc0aa831f9815413ca232b36a40f67fbc6851a4df153156196156c82e535ee04578c3b2ee232eabc11fb70c2dad381d00714950e5e4d0152d90193d8fd4b
|
7
|
+
data.tar.gz: 65a97cd5e5c3fe773f0301ad351d83a858bbead6c005b809689b7078821708b9b56617f42222ba7f9871331ddccb98802d374a4fffef4dfd9b3c5bd86dea7dcc
|
data/README.md
CHANGED
@@ -1,13 +1,16 @@
|
|
1
|
-
#
|
1
|
+
# Numo::FFTW
|
2
|
+
|
3
|
+
FFTW3 interface for Ruby/Numo::NArray. Under development.
|
4
|
+
|
5
|
+
[GitHub site](https://github.com/ruby-numo/fftw) |
|
6
|
+
[RubyGems](https://rubygems.org/gems/numo-fftw)
|
7
|
+
|
8
|
+
## [Numo::FFTW API Document](https://ruby-numo.github.io/fftw/yard/Numo/FFTW.html)
|
2
9
|
|
3
10
|
## FFTW
|
4
11
|
* FFTW is a C subroutine library for computing the discrete Fourier transform (DFT) in one or more dimensions, of arbitrary input size, and of both real and complex data.
|
5
12
|
* [FFTW site](http://www.fftw.org/)
|
6
13
|
|
7
|
-
## Numo::FFTW
|
8
|
-
* [GitHub site](https://github.com/ruby-numo/fftw)
|
9
|
-
* [Tentative API Document]()
|
10
|
-
|
11
14
|
## Installation
|
12
15
|
* Install [FFTW3](http://www.fftw.org/)
|
13
16
|
* Install [Numo::NArray](https://github.com/ruby-numo/narray)
|
data/ext/numo/fftw/fftw.erb.c
CHANGED
@@ -54,7 +54,7 @@ iter_fftw_<%=func%>(na_loop_t *const lp)
|
|
54
54
|
}
|
55
55
|
|
56
56
|
/*
|
57
|
-
<%=d%>-dimentional Complex Discrete Fourier Transform
|
57
|
+
<%=d%>-dimentional Complex Discrete Fourier Transform along the last <%=d%> dimension<%="s" if d>1%>.
|
58
58
|
@overload dft_<%=d%>d(narray,sign)
|
59
59
|
@param [Numo::DComplex] narray Input NArray with at least <%=d%> dimension<%="s" if d>1%>.
|
60
60
|
@param [Numeric] sign the sign of the exponent in the formula
|
data/ext/numo/fftw/version.h
CHANGED
@@ -1 +1 @@
|
|
1
|
-
#define NUMO_FFTW_VERSION "0.1.
|
1
|
+
#define NUMO_FFTW_VERSION "0.1.1"
|
data/numo-fftw.gemspec
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: numo-fftw
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Masahiro TANAKA
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-12-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -44,14 +44,14 @@ dependencies:
|
|
44
44
|
requirements:
|
45
45
|
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: 0.9.0
|
47
|
+
version: 0.9.0
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: 0.9.0
|
54
|
+
version: 0.9.0
|
55
55
|
description: Numo::FFTW development version.
|
56
56
|
email:
|
57
57
|
- masa16.tanaka@gmail.com
|
@@ -87,7 +87,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
87
87
|
version: '0'
|
88
88
|
requirements: []
|
89
89
|
rubyforge_project:
|
90
|
-
rubygems_version: 2.
|
90
|
+
rubygems_version: 2.7.3
|
91
91
|
signing_key:
|
92
92
|
specification_version: 4
|
93
93
|
summary: Numo::FFTW development version
|