-
WikiChip
WikiChip
-
Architectures
Popular x86
-
Intel
- Client
- Server
- Big Cores
- Small Cores
-
AMD
Popular ARM
-
ARM
- Server
- Big
- Little
-
Cavium
-
Samsung
-
-
Chips
Popular Families
-
Ampere
-
Apple
-
Cavium
-
HiSilicon
-
MediaTek
-
NXP
-
Qualcomm
-
Renesas
-
Samsung
-
From WikiChip
Difference between revisions of "mirc/identifiers/$sinh"
< mirc | identifiers
Maroonbells (talk | contribs) (Created content for empty page) |
Maroonbells (talk | contribs) m |
||
Line 32: | Line 32: | ||
* {{mIRC|$sin}} | * {{mIRC|$sin}} | ||
* {{mIRC|$asin}} | * {{mIRC|$asin}} | ||
− | |||
* {{mIRC|$tan}} | * {{mIRC|$tan}} | ||
* {{mIRC|$atan}} | * {{mIRC|$atan}} |
Revision as of 15:53, 14 June 2017
$sin(N) returns the hyperbolic sine (hypersine) of an angle of N radians
Contents
[hide]Synopsis
$sinh(<N>)[.deg]
Switches
None
Parameters
NThis is the angle in radians for which you wish to retrieve the hypersine.
Properties
degSees N as degrees in a 360 degree circle instead of radians.
Example
//echo -a There are 2x pi radians in a circle, so a radian is $calc(360 / (2*$pi) ) degrees //var %e 2.718281 | var %angle $calc( 30 * $pi / 180) | echo -a $sinh(%angle) same as $calc( ((%e ^ %angle) - (%e ^ (0 - %angle) )) /2 ) //var %angle 30 | echo -a $sinh(%angle).deg same as $sinh( $calc( %angle * $pi / 180) ) except for rounding
Unlike $sin, $sinh(N degrees).deg is not the same as $sinh( N + 360 degrees).deg
Compatibility
Added: mIRC v7.33
Added on: 27 May 2014
Note: Unless otherwise stated, this was the date of original functionality.
Further enhancements may have been made in later versions.
See also
[Expand]