BookmarkSubscribeRSS Feed

[엑셀함수] ACOS 함수

Started ‎06-14-2020 by
Modified ‎06-16-2020 by
Views 358

ACOS 함수

 

 

l    :

 

ACOS 함수는 사용자가 지정한 인수의 아크코사인(역 코사인) 값을 반환한다.

Atan(-x / Sqrt(-x * x + 1)) + 2 * Atan(1)

 

l   

 

-  엑 셀 : ACOS(number)

-  SAS  : ARCOS 함수

 

 

l  범주 : 수학  삼각 함수

 

l  예제

 

다음 예제는 주어진 주건의 아크코사인(역 코사인) 값을 반환한다.

 

DATA ACOS;

     * -0.5 아크코사인 값을 라디안 단위로 표시(2*pi/3);

     VAR1 = ARCOS(-0.5);

     PUT VAR1;

 

     * -0.5 아크코사인 값을  단위로 표시;

     VAR2 = ARCOS(-0.5)*180/CONSTANT('PI');

     PUT VAR2;

 

     * 코사인 값을 반환한다.;

     VAR3 = COS(2.0943951024);

     PUT VAR3;

RUN;

 

Version history
Last update:
‎06-16-2020 05:19 AM
Updated by:
Contributors

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

Article Labels
Article Tags