forked from livecode/livecode
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathasin.lcdoc
More file actions
59 lines (39 loc) · 1.34 KB
/
asin.lcdoc
File metadata and controls
59 lines (39 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
Name: asin
Type: function
Syntax: the asin of <number>
Syntax: asin(<number>)
Summary:
<return|Returns> the arc sine of a number in <radian|radians>.
Introduced: 1.0
OS: mac, windows, linux, ios, android
Platforms: desktop, server, mobile
Example:
the asin of .225
Example:
sin(asin(.5))
Example:
asin(pi/4 - sin(myAngle))
Parameters:
number:
A number between -1 and 1, or an expression that evaluates to such a
number.
Returns:
The <asin> <function> <return|returns> a number between -pi/2 and pi/2.
The result:
The result of the <asin> <function> is <return|returned> in
<radian|radians>. To get this result in <degree|degrees>, use the
following <custom function>:
function asinInDegrees pMagnitude
return asin(pMagnitude) * 180 / pi
end asinInDegrees
Description:
Use the <asin> <function> to find the arc sine of a number.
The arc sine of <number> is an angle whose sine is equal to <number>. In
other words, <asin> is an <inverse> of the <sin> <function>.
If a math operation on finite inputs produces a non-finite output, an
execution error is thrown. See <math operation|math operations> for more
information.
References: pi (constant), function (control structure), sin (function),
radian (glossary), custom function (glossary), return (glossary),
degree (glossary), inverse (keyword), math operation (glossary)
Tags: math