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.
Files changed (50) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +5 -0
  3. data/README.md +34 -0
  4. data/Rakefile +6 -0
  5. data/bin/console +14 -0
  6. data/bin/setup +8 -0
  7. data/ext/pspline/basis.cpp +351 -0
  8. data/ext/pspline/example/exbspline.ps +2194 -0
  9. data/ext/pspline/example/exbspline.rb +36 -0
  10. data/ext/pspline/example/excspline.ps +2985 -0
  11. data/ext/pspline/example/excspline.rb +36 -0
  12. data/ext/pspline/example/exdspline.ps +2846 -0
  13. data/ext/pspline/example/exdspline.rb +33 -0
  14. data/ext/pspline/example/exfspline.rb +66 -0
  15. data/ext/pspline/example/exfspline1.rb +40 -0
  16. data/ext/pspline/example/expspline.ps +3299 -0
  17. data/ext/pspline/example/expspline.rb +29 -0
  18. data/ext/pspline/example/expspline1.rb +29 -0
  19. data/ext/pspline/example/expspline2.rb +47 -0
  20. data/ext/pspline/example/exqspline.ps +2957 -0
  21. data/ext/pspline/example/exqspline.rb +31 -0
  22. data/ext/pspline/example/exqspline1.rb +31 -0
  23. data/ext/pspline/example/exqspline2.rb +50 -0
  24. data/ext/pspline/example/exqspline3.rb +51 -0
  25. data/ext/pspline/example/exrspline.ps +2812 -0
  26. data/ext/pspline/example/exrspline.rb +34 -0
  27. data/ext/pspline/example/exrspline1.rb +34 -0
  28. data/ext/pspline/example/exrspline2.rb +44 -0
  29. data/ext/pspline/example/exsspline.ps +1965 -0
  30. data/ext/pspline/example/exsspline.rb +35 -0
  31. data/ext/pspline/example/exsspline1.rb +35 -0
  32. data/ext/pspline/example/extspline.ps +2767 -0
  33. data/ext/pspline/example/extspline.rb +32 -0
  34. data/ext/pspline/extconf.rb +7 -0
  35. data/ext/pspline/fft.cpp +552 -0
  36. data/ext/pspline/include/basis/basis.h +137 -0
  37. data/ext/pspline/include/basis/fft.h +152 -0
  38. data/ext/pspline/include/basis/poly_array.h +1568 -0
  39. data/ext/pspline/include/basis/pspline.h +506 -0
  40. data/ext/pspline/include/basis/uspline.h +210 -0
  41. data/ext/pspline/include/basis/util.h +656 -0
  42. data/ext/pspline/include/bspline.h +377 -0
  43. data/ext/pspline/include/bspline_Config.h +2 -0
  44. data/ext/pspline/plotsub.cpp +132 -0
  45. data/ext/pspline/pspline.cpp +897 -0
  46. data/ext/pspline/util.cpp +483 -0
  47. data/lib/pspline.rb +6 -0
  48. data/lib/pspline/version.rb +3 -0
  49. data/pspline.gemspec +25 -0
  50. metadata +122 -0
@@ -0,0 +1,6 @@
1
+ require "pspline/version"
2
+ require "pspline.so"
3
+
4
+ module PSPLINE
5
+ # Your code goes here...
6
+ end
@@ -0,0 +1,3 @@
1
+ module PSPLINE
2
+ VERSION = "5.0.2"
3
+ end
@@ -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: