pspline 5.0.2
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 +7 -0
- data/Gemfile +5 -0
- data/README.md +34 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/ext/pspline/basis.cpp +351 -0
- data/ext/pspline/example/exbspline.ps +2194 -0
- data/ext/pspline/example/exbspline.rb +36 -0
- data/ext/pspline/example/excspline.ps +2985 -0
- data/ext/pspline/example/excspline.rb +36 -0
- data/ext/pspline/example/exdspline.ps +2846 -0
- data/ext/pspline/example/exdspline.rb +33 -0
- data/ext/pspline/example/exfspline.rb +66 -0
- data/ext/pspline/example/exfspline1.rb +40 -0
- data/ext/pspline/example/expspline.ps +3299 -0
- data/ext/pspline/example/expspline.rb +29 -0
- data/ext/pspline/example/expspline1.rb +29 -0
- data/ext/pspline/example/expspline2.rb +47 -0
- data/ext/pspline/example/exqspline.ps +2957 -0
- data/ext/pspline/example/exqspline.rb +31 -0
- data/ext/pspline/example/exqspline1.rb +31 -0
- data/ext/pspline/example/exqspline2.rb +50 -0
- data/ext/pspline/example/exqspline3.rb +51 -0
- data/ext/pspline/example/exrspline.ps +2812 -0
- data/ext/pspline/example/exrspline.rb +34 -0
- data/ext/pspline/example/exrspline1.rb +34 -0
- data/ext/pspline/example/exrspline2.rb +44 -0
- data/ext/pspline/example/exsspline.ps +1965 -0
- data/ext/pspline/example/exsspline.rb +35 -0
- data/ext/pspline/example/exsspline1.rb +35 -0
- data/ext/pspline/example/extspline.ps +2767 -0
- data/ext/pspline/example/extspline.rb +32 -0
- data/ext/pspline/extconf.rb +7 -0
- data/ext/pspline/fft.cpp +552 -0
- data/ext/pspline/include/basis/basis.h +137 -0
- data/ext/pspline/include/basis/fft.h +152 -0
- data/ext/pspline/include/basis/poly_array.h +1568 -0
- data/ext/pspline/include/basis/pspline.h +506 -0
- data/ext/pspline/include/basis/uspline.h +210 -0
- data/ext/pspline/include/basis/util.h +656 -0
- data/ext/pspline/include/bspline.h +377 -0
- data/ext/pspline/include/bspline_Config.h +2 -0
- data/ext/pspline/plotsub.cpp +132 -0
- data/ext/pspline/pspline.cpp +897 -0
- data/ext/pspline/util.cpp +483 -0
- data/lib/pspline.rb +6 -0
- data/lib/pspline/version.rb +3 -0
- data/pspline.gemspec +25 -0
- metadata +122 -0
data/lib/pspline.rb
ADDED
data/pspline.gemspec
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
+
require 'pspline/version'
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |spec|
|
|
7
|
+
spec.name = "pspline"
|
|
8
|
+
spec.version = PSPLINE::VERSION
|
|
9
|
+
spec.authors = ["vsp2old"]
|
|
10
|
+
spec.email = ["yatcho@hotmail.co.jp"]
|
|
11
|
+
|
|
12
|
+
spec.summary = %q{Pspline interpolation libraly implemented in C-Extensions.}
|
|
13
|
+
spec.description = %q{Pspline interpolation libraly implemented in C-Extensions.}
|
|
14
|
+
spec.homepage = ""
|
|
15
|
+
|
|
16
|
+
spec.extensions = %w[ext/pspline/extconf.rb]
|
|
17
|
+
|
|
18
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
19
|
+
spec.bindir = "exe"
|
|
20
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
21
|
+
spec.require_paths = ["ext","lib"]
|
|
22
|
+
|
|
23
|
+
spec.add_development_dependency "bundler", "~> 1.11"
|
|
24
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
|
25
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: pspline
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 5.0.2
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- vsp2old
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: exe
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2016-02-27 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: bundler
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '1.11'
|
|
20
|
+
type: :development
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '1.11'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: rake
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '10.0'
|
|
34
|
+
type: :development
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '10.0'
|
|
41
|
+
description: Pspline interpolation libraly implemented in C-Extensions.
|
|
42
|
+
email:
|
|
43
|
+
- yatcho@hotmail.co.jp
|
|
44
|
+
executables: []
|
|
45
|
+
extensions:
|
|
46
|
+
- ext/pspline/extconf.rb
|
|
47
|
+
extra_rdoc_files: []
|
|
48
|
+
files:
|
|
49
|
+
- Gemfile
|
|
50
|
+
- README.md
|
|
51
|
+
- Rakefile
|
|
52
|
+
- bin/console
|
|
53
|
+
- bin/setup
|
|
54
|
+
- ext/pspline/basis.cpp
|
|
55
|
+
- ext/pspline/example/exbspline.ps
|
|
56
|
+
- ext/pspline/example/exbspline.rb
|
|
57
|
+
- ext/pspline/example/excspline.ps
|
|
58
|
+
- ext/pspline/example/excspline.rb
|
|
59
|
+
- ext/pspline/example/exdspline.ps
|
|
60
|
+
- ext/pspline/example/exdspline.rb
|
|
61
|
+
- ext/pspline/example/exfspline.rb
|
|
62
|
+
- ext/pspline/example/exfspline1.rb
|
|
63
|
+
- ext/pspline/example/expspline.ps
|
|
64
|
+
- ext/pspline/example/expspline.rb
|
|
65
|
+
- ext/pspline/example/expspline1.rb
|
|
66
|
+
- ext/pspline/example/expspline2.rb
|
|
67
|
+
- ext/pspline/example/exqspline.ps
|
|
68
|
+
- ext/pspline/example/exqspline.rb
|
|
69
|
+
- ext/pspline/example/exqspline1.rb
|
|
70
|
+
- ext/pspline/example/exqspline2.rb
|
|
71
|
+
- ext/pspline/example/exqspline3.rb
|
|
72
|
+
- ext/pspline/example/exrspline.ps
|
|
73
|
+
- ext/pspline/example/exrspline.rb
|
|
74
|
+
- ext/pspline/example/exrspline1.rb
|
|
75
|
+
- ext/pspline/example/exrspline2.rb
|
|
76
|
+
- ext/pspline/example/exsspline.ps
|
|
77
|
+
- ext/pspline/example/exsspline.rb
|
|
78
|
+
- ext/pspline/example/exsspline1.rb
|
|
79
|
+
- ext/pspline/example/extspline.ps
|
|
80
|
+
- ext/pspline/example/extspline.rb
|
|
81
|
+
- ext/pspline/extconf.rb
|
|
82
|
+
- ext/pspline/fft.cpp
|
|
83
|
+
- ext/pspline/include/basis/basis.h
|
|
84
|
+
- ext/pspline/include/basis/fft.h
|
|
85
|
+
- ext/pspline/include/basis/poly_array.h
|
|
86
|
+
- ext/pspline/include/basis/pspline.h
|
|
87
|
+
- ext/pspline/include/basis/uspline.h
|
|
88
|
+
- ext/pspline/include/basis/util.h
|
|
89
|
+
- ext/pspline/include/bspline.h
|
|
90
|
+
- ext/pspline/include/bspline_Config.h
|
|
91
|
+
- ext/pspline/plotsub.cpp
|
|
92
|
+
- ext/pspline/pspline.cpp
|
|
93
|
+
- ext/pspline/util.cpp
|
|
94
|
+
- lib/pspline.rb
|
|
95
|
+
- lib/pspline/version.rb
|
|
96
|
+
- pspline.gemspec
|
|
97
|
+
homepage: ''
|
|
98
|
+
licenses: []
|
|
99
|
+
metadata: {}
|
|
100
|
+
post_install_message:
|
|
101
|
+
rdoc_options: []
|
|
102
|
+
require_paths:
|
|
103
|
+
- ext
|
|
104
|
+
- lib
|
|
105
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
106
|
+
requirements:
|
|
107
|
+
- - ">="
|
|
108
|
+
- !ruby/object:Gem::Version
|
|
109
|
+
version: '0'
|
|
110
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
111
|
+
requirements:
|
|
112
|
+
- - ">="
|
|
113
|
+
- !ruby/object:Gem::Version
|
|
114
|
+
version: '0'
|
|
115
|
+
requirements: []
|
|
116
|
+
rubyforge_project:
|
|
117
|
+
rubygems_version: 2.5.2
|
|
118
|
+
signing_key:
|
|
119
|
+
specification_version: 4
|
|
120
|
+
summary: Pspline interpolation libraly implemented in C-Extensions.
|
|
121
|
+
test_files: []
|
|
122
|
+
has_rdoc:
|