MTM
symsum
symbolic sum
Calling Sequence
Parameters
Description
Examples
symsum(M)
symsum(M, v)
symsum(M, a, b)
symsum(M, v, a, b)
M
-
array
v
variable
a
lower limit of summation
b
upper limit of summation
The symsum(M) function computes the element-wise symbolic sum of M. The result, R, is formed as R[i,j] = symsum(M[i,j], v, a, b).
F = symsum(f) is the indefinite symbolic sum of the scalar f. If f is a constant the variable of summation is n.
symsum(f,v) is the indefinite symbolic sum of the scalar f with respect to v.
symsum(f,a,b) is the definite symbolic sum of the scalar f in the range a..b.
symsum(f,v,a,b) is definite symbolic sum of the scalar f in the range a..b with respect to v.
with⁡MTM:
M≔Matrix⁡2,3,fill=exp⁡x+3⁢x2+5:
symsum⁡M
x⁢2⁢x2−3⁢x+112+ⅇxⅇ−1x⁢2⁢x2−3⁢x+112+ⅇxⅇ−1x⁢2⁢x2−3⁢x+112+ⅇxⅇ−1x⁢2⁢x2−3⁢x+112+ⅇxⅇ−1x⁢2⁢x2−3⁢x+112+ⅇxⅇ−1x⁢2⁢x2−3⁢x+112+ⅇxⅇ−1
See Also
MTM[int]
sum
Download Help Document