solving integral equation with differential function
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hein zaw
el 26 de Dic. de 2018
Respondida: madhan ravi
el 26 de Dic. de 2018
I want to solve this equation in matlab. integral(0 to T) is (dB/dt)^2 dt. I know the B and t data and i wrote this codes. But it still wrong. Thanks.
f=1000;
T=1/f;
fun=@(t) (diff(B,t).^2);
Q=integral(fun,0,T);
0 comentarios
Respuesta aceptada
madhan ravi
el 26 de Dic. de 2018
syms B(t)
f=1000;
T=1/f;
fun=((diff(B,t).^2))==0;
B=dsolve(fun);
Q=integral(matlabFunction(B),0,T);
0 comentarios
Más respuestas (0)
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!