Skip to content

Commit 3b85eec

Browse files
committed
"added repl.txt"
1 parent 68a161f commit 3b85eec

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
2+
{{alias}}( x )
3+
Computes the normalized derivative of cardinal sine of a number.
4+
5+
Parameters
6+
----------
7+
x: number
8+
Input value.
9+
10+
Returns
11+
-------
12+
y: number
13+
Derivative of cardinal sine.
14+
15+
Examples
16+
--------
17+
> var y = {{alias}}( 0.5 )
18+
~-1.273
19+
> y = {{alias}}( -1.2 )
20+
~0.544
21+
> y = {{alias}}( 0.0 )
22+
0.0
23+
> y = {{alias}}( NaN )
24+
NaN
25+
26+
See Also
27+
--------
28+

lib/node_modules/@stdlib/math/base/special/cosc/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ var PI = require( '@stdlib/constants/float64/pi' );
6060
*
6161
* @example
6262
* var v = cosc( -1.2 );
63-
* // returns ~-0.544
63+
* // returns ~0.544
6464
*
6565
* @example
6666
* var v = cosc( 0.0 );

0 commit comments

Comments
 (0)