Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Perl | sin() Function

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

This function is used to calculate sine of a VALUE or $_ if VALUE is omitted. This function always returns a floating point.

Syntax: sin(VALUE)

Parameters:
VALUE in the form of float

Returns: Function returns sine of VALUE.

Example 1:




#!/usr/bin/perl
  
# Calling sin() function
$var = sin(5);
  
# Printing value for sin(5)
print "sin value of 5 is $var";

Output:

sin value of 5 is -0.958924274663138

Example 2:




#!/usr/bin/perl
  
# Calling sin() function
$var = sin(9);
  
# Printing value for sin(9)
print "sin value of 9 is $var";

Output:

sin value of 9 is 0.412118485241757
My Personal Notes arrow_drop_up
Last Updated : 25 Jun, 2019
Like Article
Save Article
Similar Reads