関数
関数名に関数の引数を続けて挿入することで関数を使用できます。電卓やユーザーが定義した関数もサポートしています。引数が数か1つの変数でない場合は、引数をセミコロンで区切って括弧で囲んでください。
sin 30
abs (5−9)
fun (9;10)
To add a new function type the function in the format as given below. A function name and arguments must only contain upper or lower case characters, or underscores. The part after @ is the function description which is optional.
SimpleInterest (principal; rate; time) = principal * rate * time @ 単利計算式
関数は f(x) ボタンで追加・挿入できます。
f(x) をクリック。関数名をボックスにタイプし、引数の数を選択し、その隣にあるプラス記号をクリックします。電卓の画面で関数式をタイプし、Enter をクリックします。
f(x) をクリック。関数を選んでクリックします。
以下の関数が定義されています。
三角法 | |
sin |
|
cos |
|
tan |
|
sin⁻¹ / asin |
|
cos⁻¹ / acos |
|
tan⁻¹ / atan |
|
sinh |
|
cosh |
|
tanh |
|
sinh⁻¹ / asinh |
|
cosh⁻¹ / acosh |
|
tanh⁻¹ / atanh |
|
Complex | |
conj |
|
arg |
|
re |
|
im |
|
プログラミング | |
twos |
|
bswap |
|
mod |
|
modexp |
|
丸め | |
round |
|
floor |
|
ceil |
|
int |
|
frac |
|
Statistics | |
sum |
Sum |
sumsq |
Sum of Squares |
average |
Average |
median |
Median |
min |
Minimum Value |
max |
Maximum Value |
stdev |
Sample Standard Deviation |
stdevp |
Population Standard Deviation |
var |
Sample Variance |
varp |
Population Variance |
Sundry | |
log |
|
ln |
|
sqrt |
|
abs |
|
sgn |
|
ncr |
組み合わせ |
npr |
順列 |
gcd |
最大公約数 |
lcm |
最小公倍数 |
cmp |
Comparison (Kronecker Delta) |