Difference between revisions of "Extensions.Math.Sin"

From emotive
Jump to navigation Jump to search
m (Hb moved page Sin to Extensions.Math.Sin: #3153)
Line 1: Line 1:
[[Category:Math]]
+
{{DISPLAYTITLE:'''Sin '''}}[[Category:Math]]
 
== Classification ==
 
== Classification ==
{{ClassificationActivity | Sin | Sine of the given angle (in radians) | [[Term]] | [[Math|OTX Math Extension]] | - | - | - | Yes}}
+
{{ClassificationActivity | Sin | Sine of the given angle (in radians) | [[Term]] | [[Extensions.Math|OTX Math Extension]] | - | - | - | Yes}}
  
 
== OTL Syntax ==
 
== OTL Syntax ==
Line 11: Line 11:
 
The '''Sin''' term is used for the calculation of the sine of the given angle used (in radians).
 
The '''Sin''' term is used for the calculation of the sine of the given angle used (in radians).
  
{{TermReturnValue| [[Float]] | Sine of the given angle (in radians)}}
+
{{TermReturnValue| [[Core.DataTypes.SimpleDataType.Float|Float]] | Sine of the given angle (in radians)}}
  
 
== Properties ==
 
== Properties ==
Line 27: Line 27:
  
 
== See also ==
 
== See also ==
[[Power]]<br/>
+
[[Extensions.Math.Power|Power]]<br/>
[[Log]] <br/>
+
[[Extensions.Math.Log|Log]]<br/>
[[Ln]] <br/>
+
[[Extensions.Math.Ln|Ln]] <br/>
[[Cos]] <br/>
+
[[Extensions.Math.Cos|Cos]] <br/>
[[Tan]]
+
[[Extensions.Math.Tan|Tan]]

Revision as of 01:53, 16 February 2016

Classification

Name Sin
Short Description Sine of the given angle (in radians)
Class Term
Extension OTX Math Extension
Group -
Exceptions -
Checker Rules -
Standard Compliant Yes

OTL Syntax

FloatTerm = Math.Sin(NumericTerm);

Description

The Sin term is used for the calculation of the sine of the given angle used (in radians).

Return Value

The Term returns the value, see table below.

Icons Note.png In OTX, Terms are categorized according to its return data type!
Data Type Description
Float Sine of the given angle (in radians)

Properties

Name Data Type Class Default Cardinality Description
Rad - Term - [1] The angle of which the sine is to be calculated.

OTL Examples

Float Float1;

Float1 = Math.Sin(45);

See also

Power
Log
Ln
Cos
Tan