Difference between pages "Extern" and "Asin"

From Mesham
(Difference between pages)
Jump to navigationJump to search
 
m
 
Line 1: Line 1:
== Syntax ==
+
== Overview ==
  
extern[]
+
The asin(d) function will find the inverse sine of the value or variable ''d'' passed to it.
  
== Semantics ==
+
* '''Pass:''' A [[Double]] to find the inverse sine of
  
Provided as additional allocation type information, this tells the compiler NOT to allocate memory for the variable as this has been already done externally.
+
* '''Returns:''' A [[Double]] representing the inverse sine
  
[[Category:Type Library]]
+
== Example ==
[[Category:Compound Types]]
+
 
[[Category:Attribute Types]]
+
#include <maths>
 +
var d:=asin(23);
 +
var y:=asin(d);
 +
 
 +
''Since: Version 1.0''
 +
 
 +
[[Category:Function Library]]
 +
[[Category:Maths Functions]]

Revision as of 18:28, 13 January 2013

Overview

The asin(d) function will find the inverse sine of the value or variable d passed to it.

  • Pass: A Double to find the inverse sine of
  • Returns: A Double representing the inverse sine

Example

#include <maths>
var d:=asin(23);
var y:=asin(d);

Since: Version 1.0