Skip to content

Commit 6d383e8

Browse files
iampratik13kgryte
andauthored
chore: add structured package data for math/base/special/ccis
PR-URL: #8395 Ref: #7924 Co-authored-by: Athan Reines <kgryte@gmail.com> Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent 4d1c412 commit 6d383e8

File tree

1 file changed

+138
-1
lines changed

1 file changed

+138
-1
lines changed

lib/node_modules/@stdlib/math/base/special/ccis/package.json

Lines changed: 138 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,142 @@
6161
"complex",
6262
"cmplx",
6363
"number"
64-
]
64+
],
65+
"__stdlib__": {
66+
"scaffold": {
67+
"$schema": "math/base@v1.0",
68+
"base_alias": "cis",
69+
"alias": "ccis",
70+
"pkg_desc": "compute the cis function for a double-precision complex floating-point number",
71+
"desc": "computes the cis function for a double-precision complex floating-point number",
72+
"short_desc": "cis function",
73+
"parameters": [
74+
{
75+
"name": "z",
76+
"desc": "input value",
77+
"type": {
78+
"javascript": "Complex128",
79+
"jsdoc": "Complex128",
80+
"c": "stdlib_complex128_t",
81+
"dtype": "complex128"
82+
},
83+
"domain": null,
84+
"rand": {
85+
"prng": "random/base/uniform",
86+
"parameters": [
87+
[
88+
-50,
89+
50
90+
],
91+
[
92+
-50,
93+
50
94+
]
95+
]
96+
},
97+
"example_values": [
98+
{
99+
"re": 0,
100+
"im": 0
101+
},
102+
{
103+
"re": 1,
104+
"im": 0
105+
},
106+
{
107+
"re": -3.14,
108+
"im": -1.5
109+
},
110+
{
111+
"re": -1.5,
112+
"im": 2.5
113+
},
114+
{
115+
"re": 2.5,
116+
"im": -1.5
117+
},
118+
{
119+
"re": 0,
120+
"im": -3.7
121+
},
122+
{
123+
"re": 4.2,
124+
"im": 0
125+
},
126+
{
127+
"re": 21.2,
128+
"im": 3
129+
},
130+
{
131+
"re": 11,
132+
"im": -5
133+
},
134+
{
135+
"re": 33,
136+
"im": -14.67
137+
},
138+
{
139+
"re": -42,
140+
"im": 9.3
141+
},
142+
{
143+
"re": -3,
144+
"im": 3
145+
},
146+
{
147+
"re": 73,
148+
"im": 31
149+
},
150+
{
151+
"re": -2.45,
152+
"im": 1.23
153+
},
154+
{
155+
"re": 2.45,
156+
"im": -1.23
157+
},
158+
{
159+
"re": 1.77,
160+
"im": -3.14
161+
},
162+
{
163+
"re": -7.5,
164+
"im": 8.2
165+
},
166+
{
167+
"re": 5.5,
168+
"im": -12.3
169+
},
170+
{
171+
"re": -15.8,
172+
"im": 0.4
173+
},
174+
{
175+
"re": 0.99,
176+
"im": -0.99
177+
}
178+
]
179+
}
180+
],
181+
"returns": {
182+
"desc": "result",
183+
"type": {
184+
"javascript": "Complex128",
185+
"jsdoc": "Complex128",
186+
"c": "stdlib_complex128_t",
187+
"dtype": "complex128"
188+
}
189+
},
190+
"keywords": [
191+
"cis",
192+
"arithmetic",
193+
"complex",
194+
"exponential",
195+
"euler"
196+
],
197+
"extra_keywords": [
198+
"exp"
199+
]
200+
}
201+
}
65202
}

0 commit comments

Comments
 (0)