gpt4 book ai didi

php - Tan() 函数返回错误值

转载 作者:可可西里 更新时间:2023-11-01 00:18:48 28 4
gpt4 key购买 nike

我遇到了一些代码问题,但找不到错误。我正在尝试计算下图中用红色标记的距离。

我的代码返回值:-41.63

正确值为:3.75

我的代码:

return round(6.5 * tan(30),2);

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

enter image description here

我以为这将是一项简单的任务,但我碰壁了 - 看不到错误。我希望你们中的一些人能为我指出正确的方向。

谢谢,

肯尼斯

最佳答案

The arg parameter is in radians.

tan()

您发送的是度数,函数需要弧度,因此首先将您的值从度数转换为弧度,您将获得预期的结果。

return round(6.5 * tan(deg2rad(30)),2);   //3.75

Fiddle

关于php - Tan() 函数返回错误值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43224778/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com