Skip to content

Commit 6504e78

Browse files
committed
Update artifacts
1 parent d886578 commit 6504e78

File tree

7 files changed

+12
-11
lines changed

7 files changed

+12
-11
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">mat
429429
// MAIN //
430430
&nbsp;
431431
/**
432-
* Simultaneously computes the sine and cosine of a number and assigns results to a provided output array.
432+
* Simultaneously computes the sine and cosine of an angle measured in radians and assigns the results to a provided output array.
433433
*
434434
* ## Method
435435
*
@@ -532,7 +532,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">mat
532532
<div class='footer quiet pad2 space-top1 center small'>
533533
Code coverage generated by
534534
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
535-
at 2025-03-07T02:44:26.261Z
535+
at 2025-03-08T02:03:28.605Z
536536
</div>
537537
<script src="../../../../../prettify.js"></script>
538538
<script>

math/base/special/sincos/coverage.ndjson

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
[432,432,100,20,20,100,4,4,100,432,432,100,"3264c24815dcbd08eeb4afbf3909a3223bdaf2c1","2024-07-27 21:59:40 -0400"]
44
[432,432,100,20,20,100,4,4,100,432,432,100,"f00c6b63931baf0e14f1b6adeeacc2a1c3e353df","2024-07-28 21:33:12 -0700"]
55
[432,432,100,20,20,100,4,4,100,432,432,100,"1e8a1497524689db341608fb6a04e7adb6b9e90d","2025-03-06 21:42:52 -0500"]
6+
[432,432,100,20,20,100,4,4,100,432,432,100,"83f88d9366f1b39342a43ddfc6e36273be38a4ee","2025-03-07 21:01:20 -0500"]

math/base/special/sincos/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ <h1><a href="../../../../../index.html">All files</a> math/base/special/sincos/l
161161
<div class='footer quiet pad2 space-top1 center small'>
162162
Code coverage generated by
163163
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
164-
at 2025-03-07T02:44:26.261Z
164+
at 2025-03-08T02:03:28.605Z
165165
</div>
166166
<script src="../../../../../prettify.js"></script>
167167
<script>

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">mat
218218
'use strict';
219219
&nbsp;
220220
/**
221-
* Simultaneously compute the sine and cosine of a number.
221+
* Simultaneously compute the sine and cosine of an angle measured in radians.
222222
*
223223
* @module @stdlib/math/base/special/sincos
224224
*
@@ -242,7 +242,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">mat
242242
*
243243
* var out = new Float64Array( 2 );
244244
*
245-
* var v = sincos( out, 0.0 );
245+
* var v = sincos.assign( 0.0, out, 1, 0 );
246246
* // return &lt;Float64Array&gt;[ ~0.0, ~1.0 ]
247247
*
248248
* var bool = ( v === out );
@@ -271,7 +271,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">mat
271271
<div class='footer quiet pad2 space-top1 center small'>
272272
Code coverage generated by
273273
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
274-
at 2025-03-07T02:44:26.261Z
274+
at 2025-03-08T02:03:28.605Z
275275
</div>
276276
<script src="../../../../../prettify.js"></script>
277277
<script>

math/base/special/sincos/kernel_sincos.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">mat
349349
<div class='footer quiet pad2 space-top1 center small'>
350350
Code coverage generated by
351351
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
352-
at 2025-03-07T02:44:26.261Z
352+
at 2025-03-08T02:03:28.605Z
353353
</div>
354354
<script src="../../../../../prettify.js"></script>
355355
<script>

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">mat
205205
// MAIN //
206206
&nbsp;
207207
/**
208-
* Simultaneously computes the sine and cosine of a number.
208+
* Simultaneously computes the sine and cosine of an angle measured in radians.
209209
*
210210
* @param {number} x - input value (in radians)
211211
* @returns {Array&lt;number&gt;} sine and cosine
@@ -241,7 +241,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">mat
241241
<div class='footer quiet pad2 space-top1 center small'>
242242
Code coverage generated by
243243
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
244-
at 2025-03-07T02:44:26.261Z
244+
at 2025-03-08T02:03:28.605Z
245245
</div>
246246
<script src="../../../../../prettify.js"></script>
247247
<script>

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">mat
214214
// MAIN //
215215
&nbsp;
216216
/**
217-
* Simultaneously computes the sine and cosine of a number.
217+
* Simultaneously computes the sine and cosine of an angle measured in radians.
218218
*
219219
* @private
220220
* @param {number} x - input value (in radians)
@@ -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 2025-03-07T02:44:26.261Z
256+
at 2025-03-08T02:03:28.605Z
257257
</div>
258258
<script src="../../../../../prettify.js"></script>
259259
<script>

0 commit comments

Comments
 (0)