Skip to content

Commit 11e8878

Browse files
committed
Update artifacts
1 parent da16eb6 commit 11e8878

File tree

6 files changed

+11
-10
lines changed

6 files changed

+11
-10
lines changed

math/base/special/cpolar/assign.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">mat
229229
<div class='footer quiet pad2 space-top1 center small'>
230230
Code coverage generated by
231231
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
232-
at 2024-09-28T18:03:44.002Z
232+
at 2025-06-01T16:41:26.442Z
233233
</div>
234234
<script src="../../../../../prettify.js"></script>
235235
<script>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
[212,212,100,7,7,100,3,3,100,212,212,100,"36d8cb755436aafd5b7bb085212de5e629b47457","2023-08-25 13:10:38 -0700"]
22
[212,212,100,7,7,100,3,3,100,212,212,100,"c2444664e2c668563b5842d066a74148b1d2ff76","2023-08-26 23:01:15 -0700"]
33
[212,212,100,7,7,100,3,3,100,212,212,100,"b89c97ce0b812ff0b2aab16b4d77969d44fe3e8c","2024-09-28 13:56:33 -0400"]
4+
[212,212,100,7,7,100,3,3,100,212,212,100,"8a590f06152ebe5636942295ffdf0152a088fe1c","2025-06-01 09:39:09 -0700"]

math/base/special/cpolar/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ <h1><a href="../../../../../index.html">All files</a> math/base/special/cpolar/l
146146
<div class='footer quiet pad2 space-top1 center small'>
147147
Code coverage generated by
148148
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
149-
at 2024-09-28T18:03:44.002Z
149+
at 2025-06-01T16:41:26.442Z
150150
</div>
151151
<script src="../../../../../prettify.js"></script>
152152
<script>

math/base/special/cpolar/index.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">mat
253253
<div class='footer quiet pad2 space-top1 center small'>
254254
Code coverage generated by
255255
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
256-
at 2024-09-28T18:03:44.002Z
256+
at 2025-06-01T16:41:26.442Z
257257
</div>
258258
<script src="../../../../../prettify.js"></script>
259259
<script>

math/base/special/cpolar/main.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">mat
211211
<div class='footer quiet pad2 space-top1 center small'>
212212
Code coverage generated by
213213
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
214-
at 2024-09-28T18:03:44.002Z
214+
at 2025-06-01T16:41:26.442Z
215215
</div>
216216
<script src="../../../../../prettify.js"></script>
217217
<script>

math/base/special/cpolar/native.js.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -198,18 +198,18 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">mat
198198
*
199199
* @private
200200
* @param {Complex128} z - complex number
201-
* @returns {Array&lt;number&gt;} absolute value and phase (in radians)
201+
* @returns {Float64Array} absolute value and phase (in radians)
202202
*
203203
* @example
204204
* var Complex128 = require( '@stdlib/complex/float64/ctor' );
205205
*
206206
* var o = cpolar( new Complex128( 5.0, 3.0 ) );
207-
* // returns [ ~5.83, ~0.5404 ]
207+
* // returns &lt;Float64Array&gt;[ ~5.83, ~0.5404 ]
208208
*/
209209
function cpolar( z ) {
210-
var out = new Float64Array( 2 );
211-
addon( out, z );
212-
return [ out[ 0 ], out[ 1 ] ];
210+
var o = new Float64Array( 2 );
211+
addon( z, o );
212+
return o;
213213
}
214214
&nbsp;
215215
&nbsp;
@@ -223,7 +223,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">mat
223223
<div class='footer quiet pad2 space-top1 center small'>
224224
Code coverage generated by
225225
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
226-
at 2024-09-28T18:03:44.002Z
226+
at 2025-06-01T16:41:26.442Z
227227
</div>
228228
<script src="../../../../../prettify.js"></script>
229229
<script>

0 commit comments

Comments
 (0)