Skip to content

Commit c6b78ee

Browse files
chore: add structured package data for math/base/special/csignumf
PR-URL: #8775 Ref: #7924 Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent ba34b1b commit c6b78ee

File tree

1 file changed

+137
-1
lines changed
  • lib/node_modules/@stdlib/math/base/special/csignumf

1 file changed

+137
-1
lines changed

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

Lines changed: 137 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,5 +60,141 @@
6060
"complex",
6161
"cmplx",
6262
"number"
63-
]
63+
],
64+
"__stdlib__": {
65+
"scaffold": {
66+
"$schema": "math/base@v1.0",
67+
"base_alias": "csignum",
68+
"alias": "csignumf",
69+
"pkg_desc": "evaluate the signum function of a single-precision complex floating-point number",
70+
"desc": "evaluates the signum function of a single-precision complex floating-point number",
71+
"short_desc": "evaluate the signum function of a complex number",
72+
"parameters": [
73+
{
74+
"name": "z",
75+
"desc": "input value",
76+
"type": {
77+
"javascript": "Complex64",
78+
"jsdoc": "Complex64",
79+
"c": "stdlib_complex64_t",
80+
"dtype": "complex64"
81+
},
82+
"domain": null,
83+
"rand": {
84+
"prng": "random/base/uniform",
85+
"parameters": [
86+
[
87+
-10,
88+
10
89+
],
90+
[
91+
-10,
92+
10
93+
]
94+
]
95+
},
96+
"example_values": [
97+
{
98+
"re": -4.2,
99+
"im": 5.5
100+
},
101+
{
102+
"re": 3.7,
103+
"im": -2.8
104+
},
105+
{
106+
"re": -1.5,
107+
"im": 4.3
108+
},
109+
{
110+
"re": 6.1,
111+
"im": 1.9
112+
},
113+
{
114+
"re": -2.9,
115+
"im": -3.6
116+
},
117+
{
118+
"re": 0.8,
119+
"im": 7.2
120+
},
121+
{
122+
"re": -5.4,
123+
"im": 0.5
124+
},
125+
{
126+
"re": 2.3,
127+
"im": -4.1
128+
},
129+
{
130+
"re": -3.8,
131+
"im": 2.7
132+
},
133+
{
134+
"re": 4.9,
135+
"im": 3.2
136+
},
137+
{
138+
"re": -0.6,
139+
"im": -5.8
140+
},
141+
{
142+
"re": 1.4,
143+
"im": 6.5
144+
},
145+
{
146+
"re": -7.1,
147+
"im": -1.3
148+
},
149+
{
150+
"re": 5.6,
151+
"im": 0.9
152+
},
153+
{
154+
"re": -1.2,
155+
"im": 3.4
156+
},
157+
{
158+
"re": 3.5,
159+
"im": -6.7
160+
},
161+
{
162+
"re": -4.7,
163+
"im": 4.8
164+
},
165+
{
166+
"re": 0.3,
167+
"im": -2.1
168+
},
169+
{
170+
"re": -6.3,
171+
"im": 1.6
172+
},
173+
{
174+
"re": 2.8,
175+
"im": 5.4
176+
}
177+
]
178+
}
179+
],
180+
"returns": {
181+
"desc": "result",
182+
"type": {
183+
"javascript": "Complex64",
184+
"jsdoc": "Complex64",
185+
"c": "stdlib_complex64_t",
186+
"dtype": "complex64"
187+
}
188+
},
189+
"keywords": [
190+
"csignum",
191+
"signum",
192+
"sign",
193+
"sgn",
194+
"complex",
195+
"cmplx"
196+
],
197+
"extra_keywords": []
198+
}
199+
}
64200
}

0 commit comments

Comments
 (0)