Answers for "matlab sum function"

0

matlab sum function

syms k x
F1 = symsum(k^2,k,0,10)
Posted by: Guest on February-22-2021
0

matlab sum function

F = symsum(f,k,a,b)
% returns the sum of the series f with respect to the summation index k from the lower bound a to the upper bound b. If you do not specify k, symsum uses the variable determined by symvar as the summation index. If f is a constant, then the default variable is x.
Posted by: Guest on September-28-2021

Browse Popular Code Answers by Language