math sin for math

Returns the sine of the number.

Signature

> math sin --degrees

Parameters

  • --degrees (-d): Use degrees instead of radians

Input/output types:

inputoutput
list<number>list<number>
numbernumber

Examples

Apply the sine to π/2

> 3.141592 / 2 | math sin | math round --precision 4
1

Apply the sine to a list of angles in degrees

> [0 90 180 270 360] | math sin -d | math round --precision 4
╭───┬───────╮
│ 00.00 │
│ 11.00 │
│ 20.00 │
│ 3-1.00 │
│ 40.00 │
╰───┴───────╯

Tips: Command math sin was not included in the official binaries by default, you have to build it with --features=extra flag