This repository was archived by the owner on Aug 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 223
Expand file tree
/
Copy pathasin.xml
More file actions
47 lines (47 loc) · 2.2 KB
/
Copy pathasin.xml
File metadata and controls
47 lines (47 loc) · 2.2 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
<doc>
<legacy_id>2404</legacy_id>
<name>asin</name>
<type>function</type>
<syntax>
<example>the asin of <i>number</i></example>
<example>asin(<i>number</i>)</example>
</syntax>
<library></library>
<objects>
</objects>
<synonyms>
</synonyms>
<classification>
<category>Math, Logic, & Dates</category>
</classification>
<references>
<constant tag="pi">pi Constant</constant>
</references>
<history>
<introduced version="1.0">Added.</introduced>
</history>
<platforms>
<mac/>
<windows/>
<linux/>
<ios/>
<android/>
</platforms>
<classes>
<desktop/>
<server/>
<web/>
<mobile/>
</classes>
<security>
</security>
<summary><glossary tag="return">Returns</glossary> the arc sine of a number in <glossary tag="radian">radians</glossary>.</summary>
<examples>
<example>the asin of .225</example>
<example>sin(asin(.5))</example>
<example>asin(pi/4 - sin(myAngle))</example>
</examples>
<description>
<p>Use the <b>asin</b> <control_st tag="function">function</control_st> to find the arc sine of a number.</p><p/><p><b>Parameters:</b></p><p>The <i>number</i> is a number between -1 and 1, or an <glossary tag="expression">expression</glossary> that <glossary tag="evaluate">evaluates</glossary> to such a number.</p><p/><p><b>Value:</b></p><p>The <b>asin</b> <control_st tag="function">function</control_st> <glossary tag="return">returns</glossary> a number between -pi/2 and pi/2.</p><p/><p><b>Comments:</b></p><p>The arc sine of <i>number</i> is an angle whose sine is equal to <i>number</i>. In other words, <b>asin</b> is an <keyword tag="inverse">inverse</keyword> of the <function tag="sin">sin</function> <control_st tag="function">function</control_st>.</p><p>The result of the <b>asin</b> <control_st tag="function">function</control_st> is <glossary tag="return">returned</glossary> in <glossary tag="radian">radians</glossary>. To get this result in <glossary tag="degree">degrees</glossary>, use the following <href tag="dictionary/property/2381.xml">custom function</href>:</p><p/><p> function asinInDegrees theMagnitude</p><p> return asin(theMagnitude) * 180 / pi</p><p> end asinInDegrees</p>
</description>
</doc>