PHP sin() 函数
PHP 教程
· 2019-01-27 09:41:50
实例
返回不同数的正弦:
<?php
echo(sin(3) . "<br>");
echo(sin(-3) . "<br>");
echo(sin(0) . "<br>");
echo(sin(M_PI) . "<br>");
echo(sin(M_PI_2));
?>
echo(sin(3) . "<br>");
echo(sin(-3) . "<br>");
echo(sin(0) . "<br>");
echo(sin(M_PI) . "<br>");
echo(sin(M_PI_2));
?>
定义和用法
sin() 函数返回一个数的正弦。
语法
sin(number);
| 参数 | 描述 |
|---|---|
| number | 必需。规定一个弧度值。 |
技术细节
| 返回值: | number 的正弦。 |
|---|---|
| 返回类型: | Float |
| PHP 版本: | 4+ |
点击查看所有 PHP 教程 文章: https://www.codercto.com/courses/l/5.html
Approximation Algorithms
Vijay V. Vazirani / Springer / 2001-07-02 / USD 54.95
'This book covers the dominant theoretical approaches to the approximate solution of hard combinatorial optimization and enumeration problems. It contains elegant combinatorial theory, useful and inte......一起来看看 《Approximation Algorithms》 这本书的介绍吧!