JS 已知tan的值,如何求对应的角度也就是谁 tan x = y;知道y的值,如何求x?
2 回答
qq_慕容4105844
TA贡献1条经验 获得超1个赞
//已知tan 45° (π/4)的值为1,在此以y = tan(π/4)为例。 var y = Math.tan(Math.PI/4); //y = 1 console.log(Math.atan(y)); //求得π/4 console.log(Math.atan(y)*180/Math.PI) //求得45
慕田峪9158850
TA贡献1794条经验 获得超7个赞
Math.tan(1); // 1.5574077246549023
或者这样
function getTanDeg(deg) { var rad = deg * Math.PI/180; return Math.tan(rad); }
添加回答
举报
0/150
提交
取消