Having trouble trying to integrate.
2 次查看(过去 30 天)
显示 更早的评论
Below is my code but I have no idea why it will not run.
I just want to integrate the function (x*.515siin(x)) from 0 to 2.794
fx = @(x) x*(103./200)*sin(x));
q= integral(fx,0,2.794)
0 个评论
回答(1 个)
Torsten
2022-4-18
fx = @(x) x.*103./200.*sin(x);
q= integral(fx,0,2.794)
2 个评论
Torsten
2022-4-18
"integral" passes vectors for x to your function, not only scalar values. Therefore, you must use elementwise multiplication and division in your function definition:
fx = @(x) x.*103./200.*sin(x);
q= integral(fx,0,2.794)
mu= @(x) (x-q).^2.*fx(x);
M= integral(mu,0,2.794)
%Std of x
x_sq=sqrt(M)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!