Scilab 5.3.0
- Manuel Scilab
- Fonctions Elémentaires
- Mathématiques discrètes
- Virgule flottante
- Représentation d'entier
- Trigonométrie
- abs
- amell
- and
- &
- cumprod
- cumsum
- delip
- diag
- exp
- eye
- gsort
- imag
- intersect
- inttrap
- isdef
- isreal
- kron
- lex_sort
- linspace
- log
- log10
- log2
- logm
- logspace
- lstsize
- max
- meshgrid
- min
- modulo
- norm
- ones
- or
- |
- pen2ea
- prod
- rand
- real
- resize_matrix
- sign
- signm
- size
- solve
- sqrt
- sqrtm
- squarewave
- sum
- syslin
- toeplitz
- trianfml
- tril
- trisolve
- triu
- union
- unique
- zeros
- binomial
- bitand
- bitor
- bloc2exp
- bloc2ss
- cat
- cell2mat
- cellstr
- char
- diff
- dsearch
- flipdim
- imult
- ind2sub
- isempty
- isequal
- isequalbitwise
- isvector
- log1p
- ndgrid
- ndims
- nextpow2
- permute
- pertrans
- setdiff
- ssrand
- sub2ind
- sysconv
- sysdiag
- trfmod
- typeof
- vectorfind
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
diff
Difference and discrete derivative
Calling Sequence
y=diff(x) y=diff(x [,n [,dim]])
Arguments
- x
vector or matrix (real, complex, sparse or polynomial)
- n
integer the order of differentiation
- dim
integer or character string with values "r","c" and "*"
- y
scalar or vector
Description
y=diff(x)
compute the difference function
y=x(2:$)-x(1:$-1)
diff(x,n,dim)
is the n
th
difference function along dimension dim
.
diff(x,n,"*")
is equivalent to
diff(x(:),n).
Default value for n
is 1. Default value for
dim
is "*"
.
dim='r'
is equivalent to dim=1
and dim='c'
is equivalent to
dim=2
.
Examples
<< char | Fonctions Elémentaires | dsearch >> |