GoLang cos

request it (428)
GoLang replacement for PHP's cos [edit | history]



Do you know a GoLang replacement for PHP's cos? Write it!

PHP cos

PHP original manual for cos [ show | php.net ]

cos

(PHP 4, PHP 5, PHP 7)

cosCosine

Description

float cos ( float $arg )

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

Parameters

arg

An angle in radians

Return Values

The cosine of arg

Examples

Example #1 cos() example

<?php

echo cos(M_PI); // -1

?>

See Also