関数

関数名に関数の引数を続けて挿入することで関数を使用できます。電卓やユーザーが定義した関数もサポートしています。引数が数か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

Two’s Complement

bswap

Swap Endianness

mod

Modulus Divide

modexp

Modular Exponentiation

丸め

round

丸め

floor

切り捨て

ceil

切り上げ

int

Integer Component

frac

Fractional Component

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

Signum

ncr

組み合わせ

npr

順列

gcd

最大公約数

lcm

最小公倍数

cmp

Comparison (Kronecker Delta)