Numerical Integration in Matlab

1 view (last 30 days)
Raj Patel
Raj Patel on 3 Oct 2020
Commented: Ameer Hamza on 4 Oct 2020
I wanted to solve a numerical integral of the following equation:
fun = ((x.^4 .* exp(x))) ./ ((exp(x) - 1) .* (exp(x) - 1) );
The limits are from: 0 to Inf
Can anyone ehelp me here?
Thanks in advance.

Accepted Answer

Ameer Hamza
Ameer Hamza on 3 Oct 2020
If you have symbolic toolbox
syms x
y = ((x.^4 .* exp(x))) ./ ((exp(x) - 1) .* (exp(x) - 1) );
I = int(y, x, 0, inf)
Result
>> I
I =
(4*pi^4)/15
>> double(I)
ans =
25.9758
  4 Comments
Raj Patel
Raj Patel on 4 Oct 2020
Thanks Ameer. It helped me. Appreciate your efforts.
Ameer Hamza
Ameer Hamza on 4 Oct 2020
I am glad to be of help!

Sign in to comment.

More Answers (1)

Walter Roberson
Walter Roberson on 3 Oct 2020
integral(fun,0,683)
  1 Comment
Ameer Hamza
Ameer Hamza on 3 Oct 2020
An alternative by rearranging the terms
fun = @(x) (x.^4) ./ (exp(x).*(1 - 1./exp(x)).^2 );
integral(fun, 0, inf)

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!