[back] [prev] [next] [index] [root]

 


Sin

Returns the sine of a number.

Syntax:

y := Sin(x);

complex
  y  
complex
  x  

See also:  Cos, Tan

Description:

Given an x (in radians) the function returns the sine of x. The computation is done in the current precision of the real (complex) field.


Example:


kash> Sin(.5);
0.4794255386042030002732879352155713880818033679406006
kash> i := Comp(0, 1);
1*i
kash> Sin(i);
> 1.175201193643801456882381850595600815155717981334*i


<- back[back] [prev] [next] [index] [root]