Don't know where my code is wrong and how to fix it
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1069480/image.jpeg)
0 comentarios
Respuestas (1)
Star Strider
el 18 de Jul. de 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)
intq = int(q,t,0,1)
So double will fail unless there is a numeric value for ‘x’.
.
0 comentarios
Ver también
Categorías
Más información sobre Symbolic Math Toolbox en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!