PHP:计算 arcctg 和 ctg

发布于 2024-10-05 20:02:09 字数 46 浏览 3 评论 0原文

PHP 中是否有任何函数可以获取我的数字的余切和反余切?

谢谢

is there any function in PHP which would get the cotangent and arccotangent of my number?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

剩一世无双 2024-10-12 20:02:09

反余切(a) 将为atan(1/a)。

And arccotangent(a) would be atan(1/a).

跨年 2024-10-12 20:02:09

查看 PHP 手册中的余切函数 tan ,特别是注释此处余切请

<?php
//FOR PHP 4
function cot($rad)
{
    return tan(M_PI_2 - rad2deg($rad));
}

//FOR PHP 3
function cot($rad)
{
    return tan(M_PI/2 - rad2deg($rad));
}
?>

参阅这里 #2

Take a look at the tan function in the PHP manual for the cotangent, notably the comment here for cotangents

<?php
//FOR PHP 4
function cot($rad)
{
    return tan(M_PI_2 - rad2deg($rad));
}

//FOR PHP 3
function cot($rad)
{
    return tan(M_PI/2 - rad2deg($rad));
}
?>

See here for #2

陌生 2024-10-12 20:02:09

我相信这些没有内置的。所以你必须写/找到一些。 上 tan() 的注释中

Cot 位于 php.net http://php.net/ 手册/en/function.tan.php

I believe there are no built-ins for those. So you'll have to write/find some. Cot is in the comments for tan() on php.net

http://php.net/manual/en/function.tan.php

天生の放荡 2024-10-12 20:02:09

tan 将为您提供切线。余切为1/tan。您可以轻松使用 arctan 函数来计算 arccotan,同时记住:

arccot x = (PI / 2) - arctan x

tan will give you the tangent. Cotangent is 1/tan. You can easily use the arctan function to calculate the arccotan taking in mind that

arccot x = (PI / 2) - arctan x
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文