SIN function: Difference between revisions
From Planfix
(Created page with "{{#seo: |title=SIN Function |titlemode=append |keywords=planfix, function, sine of a number, sine |description=SIN Function }} '''SIN''' — returns the sine of the specified angle. == Format == '''SIN('''number''')''' == Important == If the argument is given in degrees, convert it to radians using the RADIANS() function. == Example == {| class="wikitable" |- ! style="font-weight: bold" | Formula ! style="font-weight: bold" | Description ! styl...") |
No edit summary |
||
(4 intermediate revisions by 2 users not shown) | |||
Line 6: | Line 6: | ||
}} | }} | ||
'''SIN''' — returns the sine of the specified angle. | '''SIN''' — returns the sine of the specified angle. | ||
== Format == | == Format == | ||
'''SIN('''number''')''' | '''SIN('''number''')''' | ||
== Important == | == Important == | ||
If the argument is given in degrees, convert it to radians using the [[ | If the argument is given in degrees, convert it to radians using the [[RADIANS function|RADIANS()]]. | ||
== Example == | == Example == |
Latest revision as of 08:12, 16 February 2024
SIN — returns the sine of the specified angle.
Format
SIN(number)
Important
If the argument is given in degrees, convert it to radians using the RADIANS().
Example
Formula | Description | Result |
---|---|---|
SIN(PI()/2) | Sine of pi/2 radians | 1.0 |
SIN(30*PI()/180) | Sine of a 30-degree angle. | 0.5 |
SIN(RADIANS(30)) | Sine of 30 degrees. | 0.5 |