MATLAB: Analytical integral in MATLAB

analyticalintegralintegrationMATLAB

Hello,
has matlab a function for analytical integrations?
Thank you for your help

Best Answer

The Symbolic Toolbox does
syms x;
f = x^2
int(f,x)
Related Question