Syntax
Public Function MathSin(Number As Double) As Double
Description
This function used to return sine value for the given angle.
Parameters
Key | Description |
Number | Angle value ,value of type double. |
Return value
Returns the sine value measured in radians within the range of -1 to 1.
Sample
Public Sub main()AlertMessage (MathSin(0)) ' Sin (0) = 0 . the Alert Message will return 0 End Sub
See Also