numo-narray-alt 0.9.7 → 0.9.8
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 +4 -4
- data/README.md +24 -10
- data/ext/numo/narray/numo/narray.h +2 -2
- data/ext/numo/narray/numo/types/complex.h +2 -2
- data/ext/numo/narray/src/mh/math/acos.h +9 -0
- data/ext/numo/narray/src/mh/math/acosh.h +9 -0
- data/ext/numo/narray/src/mh/math/asin.h +9 -0
- data/ext/numo/narray/src/mh/math/asinh.h +9 -0
- data/ext/numo/narray/src/mh/math/atan.h +9 -0
- data/ext/numo/narray/src/mh/math/atan2.h +29 -0
- data/ext/numo/narray/src/mh/math/atanh.h +9 -0
- data/ext/numo/narray/src/mh/math/cbrt.h +9 -0
- data/ext/numo/narray/src/mh/math/cos.h +9 -0
- data/ext/numo/narray/src/mh/math/cosh.h +9 -0
- data/ext/numo/narray/src/mh/math/erf.h +9 -0
- data/ext/numo/narray/src/mh/math/erfc.h +9 -0
- data/ext/numo/narray/src/mh/math/exp.h +9 -0
- data/ext/numo/narray/src/mh/math/exp10.h +9 -0
- data/ext/numo/narray/src/mh/math/exp2.h +9 -0
- data/ext/numo/narray/src/mh/math/expm1.h +9 -0
- data/ext/numo/narray/src/mh/math/frexp.h +30 -0
- data/ext/numo/narray/src/mh/math/hypot.h +29 -0
- data/ext/numo/narray/src/mh/math/ldexp.h +29 -0
- data/ext/numo/narray/src/mh/math/log.h +9 -0
- data/ext/numo/narray/src/mh/math/log10.h +9 -0
- data/ext/numo/narray/src/mh/math/log1p.h +9 -0
- data/ext/numo/narray/src/mh/math/log2.h +9 -0
- data/ext/numo/narray/src/mh/math/sin.h +9 -0
- data/ext/numo/narray/src/mh/math/sinc.h +9 -0
- data/ext/numo/narray/src/mh/math/sinh.h +9 -0
- data/ext/numo/narray/src/mh/math/sqrt.h +203 -0
- data/ext/numo/narray/src/mh/math/tan.h +9 -0
- data/ext/numo/narray/src/mh/math/tanh.h +9 -0
- data/ext/numo/narray/src/mh/math/unary_func.h +70 -0
- data/ext/numo/narray/src/mh/mean.h +1 -8
- data/ext/numo/narray/src/mh/rms.h +1 -8
- data/ext/numo/narray/src/mh/stddev.h +1 -8
- data/ext/numo/narray/src/mh/var.h +1 -8
- data/ext/numo/narray/src/t_dcomplex.c +236 -1707
- data/ext/numo/narray/src/t_dfloat.c +66 -1952
- data/ext/numo/narray/src/t_robject.c +4 -4
- data/ext/numo/narray/src/t_scomplex.c +236 -1707
- data/ext/numo/narray/src/t_sfloat.c +66 -1952
- metadata +33 -3
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: numo-narray-alt
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- yoshoku
|
|
@@ -63,6 +63,36 @@ files:
|
|
|
63
63
|
- ext/numo/narray/numo/types/uint_macro.h
|
|
64
64
|
- ext/numo/narray/numo/types/xint_macro.h
|
|
65
65
|
- ext/numo/narray/rand.c
|
|
66
|
+
- ext/numo/narray/src/mh/math/acos.h
|
|
67
|
+
- ext/numo/narray/src/mh/math/acosh.h
|
|
68
|
+
- ext/numo/narray/src/mh/math/asin.h
|
|
69
|
+
- ext/numo/narray/src/mh/math/asinh.h
|
|
70
|
+
- ext/numo/narray/src/mh/math/atan.h
|
|
71
|
+
- ext/numo/narray/src/mh/math/atan2.h
|
|
72
|
+
- ext/numo/narray/src/mh/math/atanh.h
|
|
73
|
+
- ext/numo/narray/src/mh/math/cbrt.h
|
|
74
|
+
- ext/numo/narray/src/mh/math/cos.h
|
|
75
|
+
- ext/numo/narray/src/mh/math/cosh.h
|
|
76
|
+
- ext/numo/narray/src/mh/math/erf.h
|
|
77
|
+
- ext/numo/narray/src/mh/math/erfc.h
|
|
78
|
+
- ext/numo/narray/src/mh/math/exp.h
|
|
79
|
+
- ext/numo/narray/src/mh/math/exp10.h
|
|
80
|
+
- ext/numo/narray/src/mh/math/exp2.h
|
|
81
|
+
- ext/numo/narray/src/mh/math/expm1.h
|
|
82
|
+
- ext/numo/narray/src/mh/math/frexp.h
|
|
83
|
+
- ext/numo/narray/src/mh/math/hypot.h
|
|
84
|
+
- ext/numo/narray/src/mh/math/ldexp.h
|
|
85
|
+
- ext/numo/narray/src/mh/math/log.h
|
|
86
|
+
- ext/numo/narray/src/mh/math/log10.h
|
|
87
|
+
- ext/numo/narray/src/mh/math/log1p.h
|
|
88
|
+
- ext/numo/narray/src/mh/math/log2.h
|
|
89
|
+
- ext/numo/narray/src/mh/math/sin.h
|
|
90
|
+
- ext/numo/narray/src/mh/math/sinc.h
|
|
91
|
+
- ext/numo/narray/src/mh/math/sinh.h
|
|
92
|
+
- ext/numo/narray/src/mh/math/sqrt.h
|
|
93
|
+
- ext/numo/narray/src/mh/math/tan.h
|
|
94
|
+
- ext/numo/narray/src/mh/math/tanh.h
|
|
95
|
+
- ext/numo/narray/src/mh/math/unary_func.h
|
|
66
96
|
- ext/numo/narray/src/mh/mean.h
|
|
67
97
|
- ext/numo/narray/src/mh/rms.h
|
|
68
98
|
- ext/numo/narray/src/mh/stddev.h
|
|
@@ -93,7 +123,7 @@ metadata:
|
|
|
93
123
|
homepage_uri: https://github.com/yoshoku/numo-narray-alt
|
|
94
124
|
source_code_uri: https://github.com/yoshoku/numo-narray-alt
|
|
95
125
|
changelog_uri: https://github.com/yoshoku/numo-narray-alt/blob/main/CHANGELOG.md
|
|
96
|
-
documentation_uri: https://gemdocs.org/gems/numo-narray-alt/0.9.
|
|
126
|
+
documentation_uri: https://gemdocs.org/gems/numo-narray-alt/0.9.8/
|
|
97
127
|
rubygems_mfa_required: 'true'
|
|
98
128
|
rdoc_options: []
|
|
99
129
|
require_paths:
|
|
@@ -109,7 +139,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
109
139
|
- !ruby/object:Gem::Version
|
|
110
140
|
version: '0'
|
|
111
141
|
requirements: []
|
|
112
|
-
rubygems_version: 3.
|
|
142
|
+
rubygems_version: 3.7.2
|
|
113
143
|
specification_version: 4
|
|
114
144
|
summary: Numo::NArray Alternative is an experimental project forked from Numo::NArray.
|
|
115
145
|
test_files: []
|