Back to functions

sinc


sinc function

The cardinal sine function as defined here

Usage: nerdamer("sinc(x)")


Parameters

expression x Returns the appropriate value if possible otherwise it returns the function with the simplified expression

Returns

Expression

EXAMPLES:
var x = nerdamer('sinc(5/2)').evaluate();
console.log(x.text());
var x = nerdamer('sinc(-2)').evaluate();
console.log(x.text());
var x = nerdamer('sinc(0)').evaluate();
console.log(x.text());
OUTPUT:
Back to functions