Sequences
Matrices
IMPORTANT Some of these functions require the Symbolic Math Toolbox to work. Make sure it is installed before trying to use them.
Sequences Operations
- limit(f(x), x, value) computes the limit of a function when the variable x of a symbolic function (which is different from the normal functions) tends to the value. Full Documentation
syms x; f = 3*x^-2 + 5; limit(f,x,Inf)
- symsum(f,k,a,b) computes the summation of function f with respect to variable k from the values of k = a to k = b. Full Documentation
syms k; f = (k+3)^2; symsum(f,k,1,8)
Dyson School of Design Engineering 2021 - Ivan Revenga Riesco