spcore 0.1.4 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +1 -1
- data/lib/spcore/version.rb +1 -1
- data/spcore.gemspec +2 -17
- metadata +10 -13
data/README.rdoc
CHANGED
data/lib/spcore/version.rb
CHANGED
data/spcore.gemspec
CHANGED
@@ -7,27 +7,12 @@ Gem::Specification.new do |gem|
|
|
7
7
|
gem.version = SPCore::VERSION
|
8
8
|
gem.summary = %q{A library of signal processing methods and classes.}
|
9
9
|
gem.description = <<DESCRIPTION
|
10
|
-
|
11
|
-
* Resampling (discrete up, down and up/down, polynomial up, and hybrid up/down).
|
12
|
-
* FFT transform (forward and inverse).
|
13
|
-
* DFT transform (forward and inverse).
|
14
|
-
* Windows (Blackman, Hamming, etc.).
|
15
|
-
* Windowed sinc filter for lowpass and highpass.
|
16
|
-
* Dual windowed sinc filter for bandpass and bandstop.
|
17
|
-
* Interpolation (linear and polynomial).
|
18
|
-
* Data plotting via gnuplot (must be installed to use).
|
19
|
-
* Delay line.
|
20
|
-
* Biquad filters.
|
21
|
-
* Envelope detector.
|
22
|
-
* Conversion from dB-linear and linear-dB.
|
23
|
-
* Oscillator with selectable wave type (sine, square, triangle, sawtooth).
|
24
|
-
* Signal abstraction class.
|
25
|
-
|
10
|
+
A library of signal processing methods and classes for resampling, frequency domain transform (FFT and DFT), windowing (Blackman, Hamming, etc.), FIR filtering (windowed sinc), interpolation (linear and polynomial), plotting data, waveform generation, and more!
|
26
11
|
DESCRIPTION
|
27
12
|
gem.license = "MIT"
|
28
13
|
gem.authors = ["James Tunnell"]
|
29
14
|
gem.email = "jamestunnell@lavabit.com"
|
30
|
-
gem.homepage = "https://
|
15
|
+
gem.homepage = "https://github.com/jamestunnell/spcore"
|
31
16
|
|
32
17
|
gem.files = `git ls-files`.split($/)
|
33
18
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: spcore
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -123,15 +123,12 @@ dependencies:
|
|
123
123
|
- - ! '>='
|
124
124
|
- !ruby/object:Gem::Version
|
125
125
|
version: '0'
|
126
|
-
description: !
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
\ * Delay line.\n * Biquad filters.\n * Envelope detector.\n * Conversion from
|
133
|
-
dB-linear and linear-dB.\n * Oscillator with selectable wave type (sine, square,
|
134
|
-
triangle, sawtooth).\n * Signal abstraction class.\n\n"
|
126
|
+
description: ! 'A library of signal processing methods and classes for resampling,
|
127
|
+
frequency domain transform (FFT and DFT), windowing (Blackman, Hamming, etc.), FIR
|
128
|
+
filtering (windowed sinc), interpolation (linear and polynomial), plotting data,
|
129
|
+
waveform generation, and more!
|
130
|
+
|
131
|
+
'
|
135
132
|
email: jamestunnell@lavabit.com
|
136
133
|
executables: []
|
137
134
|
extensions: []
|
@@ -210,7 +207,7 @@ files:
|
|
210
207
|
- spec/util/saturate_spec.rb
|
211
208
|
- spec/util/signal_generator_spec.rb
|
212
209
|
- spec/windows/window_spec.rb
|
213
|
-
homepage: https://
|
210
|
+
homepage: https://github.com/jamestunnell/spcore
|
214
211
|
licenses:
|
215
212
|
- MIT
|
216
213
|
post_install_message:
|
@@ -225,7 +222,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
225
222
|
version: '0'
|
226
223
|
segments:
|
227
224
|
- 0
|
228
|
-
hash: -
|
225
|
+
hash: -207484525
|
229
226
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
230
227
|
none: false
|
231
228
|
requirements:
|
@@ -234,7 +231,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
234
231
|
version: '0'
|
235
232
|
segments:
|
236
233
|
- 0
|
237
|
-
hash: -
|
234
|
+
hash: -207484525
|
238
235
|
requirements: []
|
239
236
|
rubyforge_project:
|
240
237
|
rubygems_version: 1.8.23
|