카테고리:숫자 함수 (삼각) TAN¶ 인자의 탄젠트를 계산하며, 인자는 라디안으로 표현해야 합니다. 구문¶ CopyExpandTAN( <input_expr> ) Show lessSee moreScroll to top 인자¶ input_exprThe value or expression to operate on. The value must be in radians, not degrees. The data type must be FLOAT. 반환¶ This function returns a value of type FLOAT. 예¶ CopyExpandSELECT TAN(0), TAN(PI()/3), TAN(RADIANS(90)); Show lessSee moreScroll to top Expand+--------+-------------+----------------------+ | TAN(0) | TAN(PI()/3) | TAN(RADIANS(90)) | |--------+-------------+----------------------| | 0 | 1.732050808 | 1.63312393531954e+16 | +--------+-------------+----------------------+ Show lessSee moreScroll to top