|
Builder Help 입니다.. Math.hpp 에 정의되어 있습니다.
Calculates the inverse sine of a given number.
Unit
Math
Category
Trigonometry routines
extern PACKAGE Extended __fastcall ArcSin(constExtended X);
Description
ArcSin returns the inverse sine of X. X must be between -1 and 1. The return value will be in the range [-Pi/2..Pi/2], in radians.
최상천 님이 쓰신 글 :
: sin x = 0.707
: x = inv_sin (0.707) = 약 45 도
:
:
:
:
: 수학적으로 답이 나오는데
:
:
:
: C에서 위에서 보는바와 같은 x를 구하는 inv_sin 과 같은 함수가 있나요?
:
:
:
: 없으면 어떻게 구현해야 할지....
|