cos

(PHP 4, PHP 5)

cos — Cosine

Описание

float cos ( float $arg )

cos() returns the cosine of the arg parameter. The arg parameter is in radians.

Список параметров

arg

An angle in radians

Возвращаемые значения

The cosine of arg

Примеры

Пример #1 cos() example

<?php

echo cos(M_PI); // -1

?>

Смотрите также

Коментарии

Convert degree to radianus, radianus to cos.

<?php

   
// Degree
   
$degree 360;

   
// Convertion
   
print cos(deg2rad($degree));

?>
2006-03-12 07:29:43
http://php5.kiev.ua/manual/ru/function.cos.html
Convert degree to radianus

<?php

   
// Degree
   
$degree 360;

   
// Convertion
   
print cos(deg2rad($degree));

?>
2013-10-15 14:57:37
http://php5.kiev.ua/manual/ru/function.cos.html

    Поддержать сайт на родительском проекте КГБ