カテゴリ:数値関数 (三角関数) COT¶ 引数の余接を計算します。引数はラジアンで表現する必要があります。 構文¶ CopyExpandCOT( <input_expr> ) Show lessSee moreScroll to top 引数¶ input_exprThe value or expression to operate on. The data type must be FLOAT. 戻り値¶ This function returns a value of type FLOAT. 例¶ CopyExpandSELECT COT(0), COT(PI()/3), COT(RADIANS(90)); Show lessSee moreScroll to top Expand+--------+--------------+------------------+ | COT(0) | COT(PI()/3) | COT(RADIANS(90)) | |--------+--------------+------------------| | inf | 0.5773502692 | 6.123233996e-17 | +--------+--------------+------------------+ Show lessSee moreScroll to top