Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.3.1 - Français

Change language to:
English - 日本語 - Português

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Aide Scilab >> Fonctions Elémentaires > diff

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

v=(1:8)^3;
diff(v)
diff(v,3)

A=[(1:8)^2
   (1:8)^3
   (1:8)^4];

diff(A,3,2)

//approximate differentiation
step=0.001
t=0:step:10;
y=sin(t);
dy=diff(sin(t))/step; //approximate differentiation of sine function
norm(dy-cos(t(1:$-1)),%inf)
<< char Fonctions Elémentaires imult >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Thu Mar 03 11:00:03 CET 2011