命令/関数辞書
- 概要
- 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
tan
働き
正接を得ます。
文法
tan(<x>)
- x - 角度の式
説明
x で書かれた角度の tan(正接)がこの関数の計算結果となります。計算結果は、小数点以下15位までとなり、16位以降は切り捨てられます。また、角度が90度、270度といった (角度 - 90) を 180 で割った余りが 0 だった場合は、正接の値は存在しないために、エラーが発生します。
サンプルプログラム
rem tan
cls 3
line (0,200)-(639,200),7
for i=0 to 360
if (i-90)%180<>0 then
v=tan(i)
pset (i,-1*v*3+200),6
end if
next