File tree Expand file tree Collapse file tree 9 files changed +734
-9
lines changed
lib/node_modules/@stdlib/math/base/special Expand file tree Collapse file tree 9 files changed +734
-9
lines changed Original file line number Diff line number Diff line change 68
68
" trigonometry" ,
69
69
" polyfill" ,
70
70
" ponyfill"
71
- ]
71
+ ],
72
+ "__stdlib__" : {
73
+ "scaffold" : {
74
+ "$schema" :
" math/[email protected] " ,
75
+ "base_alias" : " atan" ,
76
+ "alias" : " atan" ,
77
+ "pkg_desc" : " compute the arctangent (in radians) of a double-precision floating-point number" ,
78
+ "desc" : " computes the arctangent (in radians) of a double-precision floating-point number" ,
79
+ "short_desc" : " arctangent" ,
80
+ "parameters" : [
81
+ {
82
+ "name" : " x" ,
83
+ "desc" : " input value" ,
84
+ "type" : {
85
+ "javascript" : " number" ,
86
+ "jsdoc" : " number" ,
87
+ "c" : " double" ,
88
+ "dtype" : " float64"
89
+ },
90
+ "domain" : [
91
+ {
92
+ "min" : " -infinity" ,
93
+ "max" : " infinity"
94
+ }
95
+ ],
96
+ "rand" : {
97
+ "prng" : " random/base/uniform" ,
98
+ "parameters" : [
99
+ -100 ,
100
+ 100
101
+ ]
102
+ },
103
+ "example_values" : [
104
+ 0.33 ,
105
+ -57.2 ,
106
+ 1.2 ,
107
+ -0.77 ,
108
+ 1000 ,
109
+ -3.41 ,
110
+ 8.9 ,
111
+ -250.5 ,
112
+ 0.01 ,
113
+ 42 ,
114
+ -19.7 ,
115
+ 73.6 ,
116
+ -0.58 ,
117
+ 5.5 ,
118
+ -99.9 ,
119
+ 7.25 ,
120
+ -12.3 ,
121
+ 0 ,
122
+ 315.8 ,
123
+ -1.1
124
+ ]
125
+ }
126
+ ],
127
+ "output_policy" : " real_floating_point_and_generic" ,
128
+ "returns" : {
129
+ "desc" : " arctangent (in radians)" ,
130
+ "type" : {
131
+ "javascript" : " number" ,
132
+ "jsdoc" : " number" ,
133
+ "c" : " double" ,
134
+ "dtype" : " float64"
135
+ }
136
+ },
137
+ "keywords" : [
138
+ " atan" ,
139
+ " arctangent" ,
140
+ " tangent" ,
141
+ " tan" ,
142
+ " arc" ,
143
+ " inverse"
144
+ ],
145
+ "extra_keywords" : [
146
+ " math.atan"
147
+ ]
148
+ }
149
+ }
72
150
}
Original file line number Diff line number Diff line change 63
63
" trig" ,
64
64
" trigonometry" ,
65
65
" radians"
66
- ]
66
+ ],
67
+ "__stdlib__" : {
68
+ "scaffold" : {
69
+ "$schema" :
" math/[email protected] " ,
70
+ "base_alias" : " atand" ,
71
+ "alias" : " atand" ,
72
+ "pkg_desc" : " compute the arctangent (in degrees) of a double-precision floating-point number" ,
73
+ "desc" : " computes the arctangent (in degrees) of a double-precision floating-point number" ,
74
+ "short_desc" : " arctangent" ,
75
+ "parameters" : [
76
+ {
77
+ "name" : " x" ,
78
+ "desc" : " input value" ,
79
+ "type" : {
80
+ "javascript" : " number" ,
81
+ "jsdoc" : " number" ,
82
+ "c" : " double" ,
83
+ "dtype" : " float64"
84
+ },
85
+ "domain" : [
86
+ {
87
+ "min" : " -infinity" ,
88
+ "max" : " infinity"
89
+ }
90
+ ],
91
+ "rand" : {
92
+ "prng" : " random/base/uniform" ,
93
+ "parameters" : [
94
+ -100 ,
95
+ 100
96
+ ]
97
+ },
98
+ "example_values" : [
99
+ 180.2 ,
100
+ -3.7 ,
101
+ 0.42 ,
102
+ -98.5 ,
103
+ 5.4 ,
104
+ -0.06 ,
105
+ 73.1 ,
106
+ -41.3 ,
107
+ 9.9 ,
108
+ -12.2 ,
109
+ 0 ,
110
+ 31.8 ,
111
+ -7.5 ,
112
+ 250.7 ,
113
+ -0.9 ,
114
+ 14.2 ,
115
+ -66.4 ,
116
+ 1.01 ,
117
+ 1000 ,
118
+ -325.6
119
+ ]
120
+ }
121
+ ],
122
+ "output_policy" : " real_floating_point_and_generic" ,
123
+ "returns" : {
124
+ "desc" : " arctangent (in degrees)" ,
125
+ "type" : {
126
+ "javascript" : " number" ,
127
+ "jsdoc" : " number" ,
128
+ "c" : " double" ,
129
+ "dtype" : " float64"
130
+ }
131
+ },
132
+ "keywords" : [
133
+ " degree" ,
134
+ " arctangent" ,
135
+ " tangent" ,
136
+ " inverse"
137
+ ],
138
+ "extra_keywords" : [
139
+ " math.atan"
140
+ ]
141
+ }
142
+ }
67
143
}
Original file line number Diff line number Diff line change 63
63
" trig" ,
64
64
" trigonometry" ,
65
65
" radians"
66
- ]
66
+ ],
67
+ "__stdlib__" : {
68
+ "scaffold" : {
69
+ "$schema" :
" math/[email protected] " ,
70
+ "base_alias" : " atand" ,
71
+ "alias" : " atandf" ,
72
+ "pkg_desc" : " compute the arctangent (in degrees) of a single-precision floating-point number" ,
73
+ "desc" : " computes the arctangent (in degrees) of a single-precision floating-point number" ,
74
+ "short_desc" : " arctangent" ,
75
+ "parameters" : [
76
+ {
77
+ "name" : " x" ,
78
+ "desc" : " input value" ,
79
+ "type" : {
80
+ "javascript" : " number" ,
81
+ "jsdoc" : " number" ,
82
+ "c" : " float" ,
83
+ "dtype" : " float32"
84
+ },
85
+ "domain" : [
86
+ {
87
+ "min" : " -infinity" ,
88
+ "max" : " infinity"
89
+ }
90
+ ],
91
+ "rand" : {
92
+ "prng" : " random/base/uniform" ,
93
+ "parameters" : [
94
+ -50 ,
95
+ 50
96
+ ]
97
+ },
98
+ "example_values" : [
99
+ 0.21 ,
100
+ -77.3 ,
101
+ 6.4 ,
102
+ -0.18 ,
103
+ 19.7 ,
104
+ -41.2 ,
105
+ 2.05 ,
106
+ -9.9 ,
107
+ 73.3 ,
108
+ -25.6 ,
109
+ 0 ,
110
+ 38.9 ,
111
+ -4.7 ,
112
+ 101.5 ,
113
+ -12.1 ,
114
+ 5.8 ,
115
+ -33.4 ,
116
+ 1.03 ,
117
+ 250.2 ,
118
+ -150.7
119
+ ]
120
+ }
121
+ ],
122
+ "output_policy" : " real_floating_point_and_generic" ,
123
+ "returns" : {
124
+ "desc" : " arctangent (in degrees)" ,
125
+ "type" : {
126
+ "javascript" : " number" ,
127
+ "jsdoc" : " number" ,
128
+ "c" : " float" ,
129
+ "dtype" : " float32"
130
+ }
131
+ },
132
+ "keywords" : [
133
+ " degree" ,
134
+ " arctangent" ,
135
+ " tangent" ,
136
+ " inverse"
137
+ ],
138
+ "extra_keywords" : [
139
+ " math.atan"
140
+ ]
141
+ }
142
+ }
67
143
}
Original file line number Diff line number Diff line change 66
66
" trigonometry" ,
67
67
" radians" ,
68
68
" angle"
69
- ]
69
+ ],
70
+ "__stdlib__" : {
71
+ "scaffold" : {
72
+ "$schema" :
" math/[email protected] " ,
73
+ "base_alias" : " atan" ,
74
+ "alias" : " atanf" ,
75
+ "pkg_desc" : " compute the arctangent (in radians) of a single-precision floating-point number" ,
76
+ "desc" : " computes the arctangent (in radians) of a single-precision floating-point number" ,
77
+ "short_desc" : " arctangent" ,
78
+ "parameters" : [
79
+ {
80
+ "name" : " x" ,
81
+ "desc" : " input value" ,
82
+ "type" : {
83
+ "javascript" : " number" ,
84
+ "jsdoc" : " number" ,
85
+ "c" : " float" ,
86
+ "dtype" : " float32"
87
+ },
88
+ "domain" : [
89
+ {
90
+ "min" : " -infinity" ,
91
+ "max" : " infinity"
92
+ }
93
+ ],
94
+ "rand" : {
95
+ "prng" : " random/base/uniform" ,
96
+ "parameters" : [
97
+ -50 ,
98
+ 50
99
+ ]
100
+ },
101
+ "example_values" : [
102
+ -0.91 ,
103
+ 23.4 ,
104
+ -11.7 ,
105
+ 0.03 ,
106
+ 77.8 ,
107
+ -2.2 ,
108
+ 5.6 ,
109
+ -39.1 ,
110
+ 1.01 ,
111
+ -0.47 ,
112
+ 14.9 ,
113
+ -8.3 ,
114
+ 0 ,
115
+ 3.33 ,
116
+ -25.6 ,
117
+ 6.7 ,
118
+ -4.2 ,
119
+ 41.5 ,
120
+ -19.9 ,
121
+ 95.2
122
+ ]
123
+ }
124
+ ],
125
+ "output_policy" : " real_floating_point_and_generic" ,
126
+ "returns" : {
127
+ "desc" : " arctangent (in radians)" ,
128
+ "type" : {
129
+ "javascript" : " number" ,
130
+ "jsdoc" : " number" ,
131
+ "c" : " float" ,
132
+ "dtype" : " float32"
133
+ }
134
+ },
135
+ "keywords" : [
136
+ " atanf" ,
137
+ " arctangent" ,
138
+ " tangent" ,
139
+ " inverse"
140
+ ],
141
+ "extra_keywords" : [
142
+ " math.atan"
143
+ ]
144
+ }
145
+ }
70
146
}
You can’t perform that action at this time.
0 commit comments