Scilab 5.3.3
- Aide Scilab
- Fonctions Elémentaires
- Complex
- Mathématiques discrètes
- Matrices élémentaires
- Virgule flottante
- Représentation d'entier
- Manipulation de matrices
- Opérations matricielles
- Chercher et trier
- Opérations sur les ensembles
- Traitement du signal
- Calcul symbolique
- Trigonométrie
- Bitwise operations
- abs
- amell
- and
- &
- delip
- exp
- inttrap
- isdef
- log
- log10
- log2
- logm
- lstsize
- max
- min
- modulo
- norm
- or
- |
- sign
- signm
- size
- sqrt
- sqrtm
- squarewave
- toeplitz
- cat
- cell2mat
- cellstr
- char
- diff
- isempty
- isequal
- isequalbitwise
- isvector
- log1p
- ndims
- pertrans
- 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
computes with accuracy the natural logarithm of its argument added by one
Calling Sequence
y=log1p(x)
Arguments
- x
real scalar, vector or matrix
- y
real scalar, vector or matrix
Description
logp1(x)
is the "element-wise" log(1+x) function.
y(i,j)=log(1 + x(i,j))
. This function, defined for x
> -1, must be used if we want to compute log(1+x) with accuracy for |x|
<< 1.
Examples
See Also
- log — logarithme naturel
Authors
B.P.
<< isvector | Fonctions Elémentaires | ndims >> |