命令/関数辞書
- 概要
- abs
- acos
- asc
- asin
- assert
- atan
- atan2
- background
- beep
- bgmadd
- bgmplay
- bgmstate
- bgmstop
- bind$
- binding
- box
- call
- chr$
- circle
- cls
- connect$
- connected@
- connecting
- cos
- crash
- data
- datetime@
- def animation
- def background
- def pic
- direction
- disconnect
- distance
- do
- elemtype
- else
- else if
- end
- end function
- end if
- end procedure
- exit do
- exit for
- exit procedure
- fetch@
- for
- function
- hear$
- hide
- if
- include
- inkey$
- input
- left$
- len
- let
- line
- listen
- listening
- locate
- loop
- main
- mainvar
- mainvar$
- mainvar@
- max
- mid$
- min
- move
- moving
- next
- oval
- paint
- pause
- pi
- play
- point
- pow
- procedure
- pset
- put
- random
- read
- receive@
- render
- return
- right$
- roll
- round
- scr$
- send
- sgn
- show
- sin
- speak
- speed
- sprite
- sqr
- stay
- stop
- str$
- tan
- tap
- time
- touch
- truncate
- turn
- unbind
- val
- visible
- write
- xpos
- ypos
asin
働き
逆正弦を得ます。
文法
asin(<x>)
- x - 逆正弦を求めたい数値の式(-1 以上 1 以下)
説明
x で書かれた数値の アークサイン(逆正弦、sin の逆関数)の角度がこの関数の計算結果となります。計算結果は、小数点以下15位までとなり、16位以降は切り捨てられます。x は -1 から 1 の間の数値でなければなりません。範囲外の数値が指定されたときは、エラーとなります。
サンプルプログラム
rem asin
cls 3
line (0,200)-(639,200),7
for i=-1 to 1 step 0.01
v=asin(i)
x=125+(i+1)*200
y=v+200
pset (x,y),6
next