Clear Filters
Clear Filters

Don't know where my code is wrong and how to fix it

2 views (last 30 days)

Answers (1)

Star Strider
Star Strider on 18 Jul 2022
The integrated result remains symbolic because ‘x’ is symbolic.
Example —
syms t x
x2 = t^3;
F2 = sin(x);
q = F2*diff(x2,t)
q = 
intq = int(q,t,0,1)
intq = 
So double will fail unless there is a numeric value for ‘x’.
.

Categories

Find more on Symbolic Math Toolbox in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!