File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
lib/node_modules/@stdlib/math/base/special/cosc Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ var cosc = require( '@stdlib/math/base/special/cosc' );
5555
5656#### cosc( x )
5757
58- Computes the normalized [ cardinal cose ] [ cosc ] of a ` number ` .
58+ Computes the normalized [ derivative of cardinal sine ] [ cosc ] of a ` number ` .
5959
6060``` javascript
6161var v = cosc ( 0.5 );
Original file line number Diff line number Diff line change @@ -41,9 +41,9 @@ def print_summary(total, passing):
4141
4242 """
4343 print ("#" )
44- print ("1.." + str (total ) ) # TAP plan
45- print ("# total " + str (total ) )
46- print ("# pass " + str (passing ) )
44+ print ("1.." + str ( total ) ) # TAP plan
45+ print ("# total " + str ( total ) )
46+ print ("# pass " + str ( passing ) )
4747 print ("#" )
4848 print ("# ok" )
4949
@@ -64,9 +64,9 @@ def print_results(elapsed):
6464 rate = ITERATIONS / elapsed
6565
6666 print (" ---" )
67- print (" iterations: " + str (ITERATIONS ) )
68- print (" elapsed: " + str (elapsed ) )
69- print (" rate: " + str (rate ) )
67+ print (" iterations: " + str ( ITERATIONS ) )
68+ print (" elapsed: " + str ( elapsed ) )
69+ print (" rate: " + str ( rate ) )
7070 print (" ..." )
7171
7272
@@ -83,7 +83,7 @@ def benchmark():
8383 print ("# python::scipy::" + NAME )
8484 elapsed = t .timeit (number = ITERATIONS )
8585 print_results (elapsed )
86- print ("ok " + str (i + 1 ) + " benchmark finished" )
86+ print ("ok " + str ( i + 1 ) + " benchmark finished" )
8787
8888 print_summary (REPEATS , REPEATS )
8989
You can’t perform that action at this time.
0 commit comments