Perl cos()函数

Perl cos()函数

本函数用于计算VALUE的余弦,如果省略VALUE,则计算$_。VALUE的单位应是弧度。

语法: cos(VALUE)

参数:

以弧度为单位的VALUE

返回: 函数返回 VALUE 的余弦值。

示例 1 :

#!/usr/bin/perl
  
# Calling cos function
var = cos(5);
  
# Printing value of cos(5)
print "cos value of 5 isvar";

输出

cos value of 5 is 0.283662185463226

例2 :

#!/usr/bin/perl
  
# Calling cos function
var = cos(9);
  
# Printing value of cos(9)
print "cos value of 9 isvar";

输出

cos value of 9 is -0.911130261884677

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程