MTM
int
integral
Calling Sequence
Parameters
Description
Examples
int(M)
int(M, v)
int(M, a, b)
int(M, v, a, b)
M
-
array or expression
v
variable
a
lower limit of integration
b
upper limit of integration
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.
with⁡MTM:
M≔Matrix⁡2,3,fill=exp⁡x+3⁢x2+5:
int⁡M
x3+5⁢x+ⅇxx3+5⁢x+ⅇxx3+5⁢x+ⅇxx3+5⁢x+ⅇxx3+5⁢x+ⅇxx3+5⁢x+ⅇx
See Also
MTM[diff]
Download Help Document