Scilab-Branch-5.3-GIT
- Scilab help
- Elementary Functions
- bitwise
- Complex
- Discrete mathematics
- elementarymatrices
- Floating point
- Integer representation
- matrixmanipulation
- matrixoperations
- searchandsort
- setoperations
- signalprocessing
- symbolic
- Trigonometry
- abs
- amell
- and
- &
- cat
- cell2mat
- cellstr
- char
- delip
- diff
- exp
- inttrap
- isdef
- isempty
- isequal
- isequalbitwise
- isvector
- log
- log10
- log1p
- log2
- logm
- lstsize
- max
- maxi
- min
- mini
- modulo
- ndims
- norm
- or
- |
- pertrans
- sign
- signm
- size
- sort
- sqrt
- sqrtm
- squarewave
- toeplitz
- typeof
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
log1p
引数に1を足した数の自然対数を厳密に計算する
呼び出し手順
y=log1p(x)
パラメータ
- x
実数スカラー, ベクトルまたは行列
- y
実数スカラー, ベクトルまたは行列
説明
logp1(x)
は "要素毎"の log(1+x) 関数です.
y(i,j)=log(1 + x(i,j))
. この関数は
x > -1, で定義され,|x| << 1 において
正確にlog(1+x)を計算する必要がある場合に使用されます.
例
参照
- log — 自然対数
作者
B.P.
<< log10 | Elementary Functions | log2 >> |