int - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


MTM

  

int

  

integral

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

int(M)

int(M, v)

int(M, a, b)

int(M, v, a, b)

Parameters

M

-

array or expression

v

-

variable

a

-

lower limit of integration

b

-

upper limit of integration

Description

• 

The int(M) function computes the element-wise integral of M.  The result, R, is formed as R[i,j] = int(M[i,j], v, a, b).

• 

F = int(f) is the indefinite integral of the scalar f.  If f is a constant, the variable of integration is x.

• 

int(f,v) is the indefinite integral of the scalar f with respect to v.

• 

int(f,a,b) is the definite integral of the scalar f on the interval [a,b].

• 

int(f,v,a,b) is the definite integral of the scalar f on the interval [a,b] with respect to v.

Examples

withMTM:

MMatrix2,3,fill=expx+3x2+5:

intM

x3+5x+ⅇxx3+5x+ⅇxx3+5x+ⅇxx3+5x+ⅇxx3+5x+ⅇxx3+5x+ⅇx

(1)

See Also

int

MTM[diff]