Difference between pages "Download rtl 0.2" and "Asin"

From Mesham
(Difference between pages)
Jump to navigationJump to search
(Created page with '== Runtime Library Version 0.2 == Version 0.2 is currently the most up-to-date version of the Mesham RTL and is required by Mesham 0.5. This version of the library contains many…')
 
 
Line 1: Line 1:
== Runtime Library Version 0.2 ==
+
== Overview ==
  
Version 0.2 is currently the most up-to-date version of the Mesham RTL and is required by Mesham 0.5. This version of the library contains many advantages and improvements over the previous version and as such it is suggested you use this. The version on this page is backwards compatable to version 0.41(b). This version does not explicitly support the Windows OS, although it will be possible for an experienced programmer to install it on that system.
+
The asin(d) function will find the inverse sine of the value or variable ''d'' passed to it.
  
== Download ==
+
* '''Pass:''' A [[Double]] to find the inverse sine of
  
== Instructions ==
+
* '''Returns:''' A [[Double]] representing the inverse sine
  
Detailed installation, usage and options instructions are included with the library. Additionally these can be found on the [[All 0.5]] page.
+
== Example ==
 +
 
 +
#include <maths>
 +
 +
function void main() {
 +
    var d:=asin(23);
 +
    var y:=asin(d);
 +
};
 +
 
 +
''Since: Version 1.0''
 +
 
 +
[[Category:Function Library]]
 +
[[Category:Maths Functions]]

Revision as of 14:32, 15 April 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>

function void main() {
   var d:=asin(23);
   var y:=asin(d);
};

Since: Version 1.0