Solve function with integration of function of variable
Mostrar comentarios más antiguos
hi,
I want to use solve function on integration of varible, but it is giving error like:
"A and B must be floating point scalars".
The operation is like :
syms Y; solve(integral(@(x) exp(-x),0,T)==0.5);
Can you give suggestion to solve this (or) suggest me an alternative way. Thank you.
Respuesta aceptada
Más respuestas (1)
Andrei Bobrov
el 2 de Jul. de 2015
Maybe so?
out = fzero(@(x)integral(@(y)exp(-y),0,x)-.5,.5);
1 comentario
modem sudhakar
el 2 de Jul. de 2015
Categorías
Más información sobre Mathematics en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!