File tree Expand file tree Collapse file tree 10 files changed +12
-12
lines changed
lib/node_modules/@stdlib/math/base/special/sincosd
include/stdlib/math/base/special Expand file tree Collapse file tree 10 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ limitations under the License.
2020
2121# sincosd
2222
23- > Simultaneously compute the [ sine] [ @stdlib/math/base/special/sind ] and [ cosine] [ @stdlib/math/base/special/cosd ] of a number .
23+ > Simultaneously compute the [ sine] [ @stdlib/math/base/special/sind ] and [ cosine] [ @stdlib/math/base/special/cosd ] an angle measured in degrees .
2424
2525<section class =" usage " >
2626
Original file line number Diff line number Diff line change 11
22{{alias}}( x )
3- Simultaneously computes the sine and cosine of a number .
3+ Simultaneously computes the sine and cosine an angle measured in degrees .
44
55 Parameters
66 ----------
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ import { Collection } from '@stdlib/types/array';
2424
2525interface sincosd {
2626 /**
27- * Simultaneously computes the sine and cosine of a number .
27+ * Simultaneously computes the sine and cosine an angle measured in degrees .
2828 *
2929 * @param x - input value (in degrees)
3030 * @returns sine and cosine
@@ -48,7 +48,7 @@ interface sincosd {
4848 ( x : number ) : Array < number > ;
4949
5050 /**
51- * Simultaneously computes the sine and cosine of a number .
51+ * Simultaneously computes the sine and cosine an angle measured in degrees .
5252 *
5353 * @param x - input value (in degrees)
5454 * @param out - output array
@@ -71,7 +71,7 @@ interface sincosd {
7171}
7272
7373/**
74- * Simultaneously computes the sine and cosine of a number .
74+ * Simultaneously computes the sine and cosine an angle measured in degrees .
7575*
7676* @param x - input value (in degrees)
7777* @returns sine and cosine
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ extern "C" {
2727#endif
2828
2929/**
30- * Simultaneously computes the sine and cosine of a number .
30+ * Simultaneously computes the sine and cosine an angle measured in degrees .
3131*/
3232void stdlib_base_sincosd ( const double x , double * sine , double * cosine );
3333
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ var cosd = require( '@stdlib/math/base/special/cosd' );
2727// MAIN //
2828
2929/**
30- * Simultaneously computes the sine and cosine of a number and assigns results to a provided output array.
30+ * Simultaneously computes the sine and cosine of an angle measured in degrees and assigns the results to a provided output array.
3131*
3232* @private
3333* @param {number } x - input value (in degrees)
Original file line number Diff line number Diff line change 1919'use strict' ;
2020
2121/**
22- * Simultaneously compute the sine and cosine of a number .
22+ * Simultaneously compute the sine and cosine an angle measured in degrees .
2323*
2424* @module @stdlib /math/base/special/sincosd
2525*
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ var assign = require( './assign.js' );
2626// MAIN //
2727
2828/**
29- * Simultaneously computes the sine and cosine of a number .
29+ * Simultaneously computes the sine and cosine an angle measured in degrees .
3030*
3131* @param {number } x - input value (in degrees)
3232* @returns {Array<number> } sine and cosine
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ var addon = require( './../src/addon.node' );
2727// MAIN //
2828
2929/**
30- * Simultaneously computes the sine and cosine of a number .
30+ * Simultaneously computes the sine and cosine an angle measured in degrees .
3131*
3232* @private
3333* @param {number } x - input value (in degrees)
Original file line number Diff line number Diff line change 11{
22 "name" : " @stdlib/math/base/special/sincosd" ,
33 "version" : " 0.0.0" ,
4- "description" : " Simultaneously compute the sine and cosine of a number ." ,
4+ "description" : " Simultaneously compute the sine and cosine an angle measured in degrees ." ,
55 "license" : " Apache-2.0 AND BSL-1.0" ,
66 "author" : {
77 "name" : " The Stdlib Authors" ,
Original file line number Diff line number Diff line change 2121#include "stdlib/math/base/special/cosd.h"
2222
2323/**
24- * Simultaneously computes the sine and cosine of a number .
24+ * Simultaneously computes the sine and cosine an angle measured in degrees .
2525*
2626* @param x input value (in degrees)
2727* @param sine destination to store the sine
You can’t perform that action at this time.
0 commit comments