Difference between revisions of "Asin"

From Mesham
Jump to navigationJump to search
(Created page with '== 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:'''…')
 
m
Line 9: Line 9:
 
== Example ==
 
== Example ==
  
 +
#include <maths>
 
  var d:=asin(23);
 
  var d:=asin(23);
 
  var y:=asin(d);
 
  var y:=asin(d);

Revision as of 12:45, 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);