Difference between pages "Operators" and "Asin"

From Mesham
(Difference between pages)
Jump to navigationJump to search
(Created page with '== Operators == #+ #- #* Multiplication #% Division #<< Bit shift to left #>> Bit shift to right #== Test for equality #!= Test for inverse equality #= Test of equa…')
 
m
 
Line 1: Line 1:
== Operators ==
+
== Overview ==
#+
 
#-
 
#*  Multiplication
 
#% Division
 
#<< Bit shift to left
 
#>>  Bit shift to right 
 
#==  Test for equality 
 
#!=  Test for inverse equality
 
#=  Test of equality on strings
 
#< Test lvalue is smaller than rvalue
 
#>  Test lvalue is greater than rvalue 
 
#<=  Test lvalue is smaller or equal to rvalue
 
#>=  Test lvalue is greater or equal to rvalue
 
#||  Logical OR
 
#&&  Logical AND
 
  
[[Category:Core Mesham]]
+
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''
 +
 
 +
[[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