2016-08-31 33 views
2

我已經在互聯網上搜索,我找不到Math對象的方法,該對象返回一個角度的ctgarcctg。是否有這樣的方法,或者我應該使用這些數學公式剛剛創建自己的功能:JavaScript:餘切和arccotangent

enter image description here

enter image description here

+1

你可以看下到文檔爲['Math'](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects /數學)(有些方法可能不適用於IE) –

回答

7

沒有,如果你想他們,你將不得不自己定義它們。幸運的是,他們很容易:

function ctg(x) { return 1/Math.tan(x); } 
function arcctg(x) { return Math.PI/2 - Math.atan(x); }