We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.
The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.
When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.
To join us in bringing numerical computing to the web, get started by checking us out on GitHub, and please consider financially supporting stdlib. We greatly appreciate your continued support!
Sine
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url]
Compute the [sine][sine] of a number.
bash
npm install @stdlib/math-base-special-sin
javascript
var sin = require( '@stdlib/math-base-special-sin' );
#### sin( x )
Computes the [sine][sine] of a number
(in radians).
javascript
var v = sin( 0.0 );
// returns ~0.0
v = sin( 3.141592653589793/2.0 );
// returns ~1.0
v = sin( -3.141592653589793/6.0 );
// returns ~-0.5
javascript
var linspace = require( '@stdlib/array-base-linspace' );
var TWO_PI = require( '@stdlib/constants-float64-two-pi' );
var sin = require( '@stdlib/math-base-special-sin' );
var x = linspace( 0.0, TWO_PI, 100 );
var i;
for ( i = 0; i < x.length; i++ ) {
console.log( sin( x[ i ] ) );
}
c
#include "stdlib/math/base/special/sin.h"
#### stdlib_base_sin( x )
Computes the [sine][sine] of a number
(in radians).
c
double y = stdlib_base_sin( 3.141592653589793 / 2.0 );
// returns ~1.0
The function accepts the following arguments:
- x: [in] double
input value.
c
double stdlib_base_sin( const double x );
c
#include "stdlib/math/base/special/sin.h"
#include <stdio.h>
int main( void ) {
const double x[] = { 0.0, 0.523, 0.785, 1.047, 3.14 };
double y;
int i;
for ( i = 0; i < 5; i++ ) {
y = stdlib_base_sin( x[ i ] );
printf( "sin(%lf) = %lf\n", x[ i ], y );
}
}
@stdlib/math-base/special/cos
][@stdlib/math/base/special/cos]: compute the cosine of a number.
- [@stdlib/math-base/special/sinpi
][@stdlib/math/base/special/sinpi]: compute sin(πx).
- [@stdlib/math-base/special/tan
][@stdlib/math/base/special/tan]: evaluate the tangent of a number.