PHP:计算 arcctg 和 ctg
PHP 中是否有任何函数可以获取我的数字的余切和反余切?
谢谢
is there any function in PHP which would get the cotangent and arccotangent of my number?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
反余切(a) 将为atan(1/a)。
And arccotangent(a) would be atan(1/a).
查看 PHP 手册中的余切函数 tan ,特别是注释此处余切请
参阅这里 #2
Take a look at the tan function in the PHP manual for the cotangent, notably the comment here for cotangents
See here for #2
http://php.net/manual/en/function.atan.php
http://php.net/manual/en/function 的评论中有一个 cotan 函数.tan.php
http://php.net/manual/en/function.atan.php
theres a cotan funciton in teh comments for http://php.net/manual/en/function.tan.php
我相信这些没有内置的。所以你必须写/找到一些。 上 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
tan
将为您提供切线。余切为1/tan
。您可以轻松使用arctan
函数来计算 arccotan,同时记住:tan
will give you the tangent. Cotangent is1/tan
. You can easily use thearctan
function to calculate the arccotan taking in mind that