Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
cubloc:acos:index [2026/02/20 05:18] admincubloc:acos:index [2026/02/20 15:34] (current) – external edit 127.0.0.1
Line 27: Line 27:
 [[cubloc:|명령어 목록으로 가기]] [[cubloc:|명령어 목록으로 가기]]
  
- 
-====== Acos ====== 
- 
-''Variable = Acos(Value)'' 
-| //Variable : 결과가 저장될 실수형 변수 // |  
-| //Value : 실수형상수 또는 실수형변수   // |  
- 
-==== 설명 ==== 
-Arc코사인 값을 반환합니다. 
-아크 코사인은 cos함수의 역함수입니다. Value는 -1 ~ 1 사이의 값을 가져야합니다. 
- 
-==== 사용예 ==== 
-<code xbasic> 
-    Dim A As Single     
-    Dim B As Single 
-    Wait 500 
-    B = 0.4 
-    A = Acos(B)  
-    Debug Float A,cr 
-</code> 
- 
- 
-[[cubloc:|명령어 목록으로 가기]]