How to Integration this function?
Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
Ältere Kommentare anzeigen
Is there anyway we can integrate exp(z*(z+1)/(z-1)) with respect to z?
3 Kommentare
The function has a discontinuity at
. From the plots below, the integral cannot converge in the interval 
syms z
f = exp(z*(z + 1)/(z - 1));
subplot(121)
fplot(f, [-7, 1])
xlabel('z')
title('f(z < 1)')
ylim([0, 1.2])
subplot(122)
fplot(f, [1, 3])
xlabel('z')
title('f(z > 1)')
ylim([0, 5000])
simran
am 13 Feb. 2026 um 12:19
Antworten (0)
Diese Frage ist geschlossen.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
