find integral of complex function using residues
9 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hello,
How can I find integral of a function like this:
where I have to integrate with circle:
. I MUST use residues to find the integral of this function. Maybe there is a simple, efficient way to do this?
where I have to integrate with circle:
. I MUST use residues to find the integral of this function. Maybe there is a simple, efficient way to do this?Thank You in advance.
1 Commento
David Goodmanson
il 28 Giu 2019
for the record,
integrand f(z) = (1/2) / (z^2+z/2-1)
= (1/2) / ((z-r1)(z-r2))
r = roots([1 1/2 -1])
r = -1.2808
0.7808
contour encloses positive root r(2)
residue = (1/2)*(r(2)-r(1))
Integral = (2*pi*i) * (1/2)*(r(2)-r(1)) = 0.0000 + 1.5239i
Risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!