plot the integral of function

 Accepted Answer

madhan ravi
madhan ravi on 14 Dec 2018
Edited: madhan ravi on 14 Dec 2018
If you want specific help post what you tried:
fun = @(theta).... your function without integral
integral(fun,0,pi/2)

6 Comments

thanks mr madhan for your answer and how can i plot it ?
Clear Marklina's answer moved here for consistency:
i'm trying this,but it doesn't give the result :
f=@(theta)((cos(pi/2*cos(theta))^(2))/sin(theta));
integral(f,0,pi/2)
Try this:
f=@(theta)((cos((pi./2).*cos(theta)).^(2))./sin(theta));
integral(f,0,pi/2)
clear marklina
clear marklina on 14 Dec 2018
Edited: clear marklina on 14 Dec 2018
thank you mr madhan, it works and give sto me ans=0.6094, , can you help me how can i plot this integral !
use cumtrapz() but I did all the experiments I could but breaking this problem was hectic for me...

Sign in to comment.

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!