Symbolic Math Toolbox
 Go to function:
  Search    Help Desk 
int ExamplesSee Also

Integrate.

Syntax

Description

int(S) returns the indefinite integral of S with respect to its symbolic variable as defined by findsym.

int(S,v) returns the indefinite integral of S with respect to the symbolic scalar variable v.

int(S,a,b) returns the definite integral from a to b of each element of S with respect to each element's default symbolic variable. a and b are symbolic or double scalars.

int(S,v,a,b) returns the definite integral of S with respect to v from a to b.

Examples

int(-2*x/(1+x^2)^2) returns

int(x/(1+z^2),z) returns

int(x*log(1+x),0,1) returns

int(2*x, sin(t), 1) returns

int([exp(t),exp(alpha*t)]) returns

See Also

diff, symsum



[ Previous | Help Desk | Next ]