narray 0.6.0.3 → 0.6.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/src/lib/narray_ext.rb +1 -1
  2. data/src/narray.h +2 -2
  3. metadata +27 -19
@@ -287,7 +287,7 @@ module NMath
287
287
  1/tan(x)
288
288
  end
289
289
  def coth x
290
- 1/atanh(x)
290
+ 1/tanh(x)
291
291
  end
292
292
  def acot x
293
293
  atan(1/x.to_f)
data/src/narray.h CHANGED
@@ -23,8 +23,8 @@
23
23
  # include <sys/types.h>
24
24
  #endif
25
25
 
26
- #define NARRAY_VERSION "0.6.0.2"
27
- #define NARRAY_VERSION_CODE 602
26
+ #define NARRAY_VERSION "0.6.0.4"
27
+ #define NARRAY_VERSION_CODE 604
28
28
 
29
29
  /*
30
30
  Data types used in NArray :
metadata CHANGED
@@ -1,23 +1,27 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: narray
3
- version: !ruby/object:Gem::Version
4
- version: 0.6.0.3
3
+ version: !ruby/object:Gem::Version
5
4
  prerelease:
5
+ version: 0.6.0.4
6
6
  platform: ruby
7
- authors:
7
+ authors:
8
8
  - Masahiro Tanaka
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-12-26 00:00:00.000000000 Z
12
+
13
+ date: 2012-12-29 00:00:00 Z
13
14
  dependencies: []
15
+
14
16
  description: Numerical N-dimensional Array class
15
17
  email: masa16.tanaka@gmail.com
16
18
  executables: []
17
- extensions:
19
+
20
+ extensions:
18
21
  - src/extconf.rb
19
22
  extra_rdoc_files: []
20
- files:
23
+
24
+ files:
21
25
  - src/ChangeLog
22
26
  - src/MANIFEST
23
27
  - src/README.en
@@ -41,27 +45,31 @@ files:
41
45
  - src/lib/narray_ext.rb
42
46
  - src/lib/nmatrix.rb
43
47
  homepage: http://narray.rubyforge.org/
44
- licenses: []
48
+ licenses:
49
+ - Ruby
45
50
  post_install_message:
46
51
  rdoc_options: []
47
- require_paths:
52
+
53
+ require_paths:
48
54
  - .
49
- required_ruby_version: !ruby/object:Gem::Requirement
55
+ required_ruby_version: !ruby/object:Gem::Requirement
50
56
  none: false
51
- requirements:
52
- - - ! '>='
53
- - !ruby/object:Gem::Version
54
- version: '0'
55
- required_rubygems_version: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: "0"
61
+ required_rubygems_version: !ruby/object:Gem::Requirement
56
62
  none: false
57
- requirements:
58
- - - ! '>='
59
- - !ruby/object:Gem::Version
60
- version: '0'
63
+ requirements:
64
+ - - ">="
65
+ - !ruby/object:Gem::Version
66
+ version: "0"
61
67
  requirements: []
68
+
62
69
  rubyforge_project: narray
63
70
  rubygems_version: 1.8.23
64
71
  signing_key:
65
72
  specification_version: 2
66
73
  summary: N-dimensional Numerical Array class for Ruby
67
74
  test_files: []
75
+