plz help me ....complex contour integral
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
salah zetreni
am 12 Mär. 2015
Kommentiert: Shariefa Shaik
am 1 Nov. 2017
I answers integral ∮e^2z/((1+z)^4 ) dz around|z|=2 ,I answer it by using cauchy integral.. how can I answer it by using matlab ?? plz help me , I need to your help ,thank you every one
0 Kommentare
Akzeptierte Antwort
Torsten
am 12 Mär. 2015
fun=@(z)exp(2*z)/(1+z)^4;
g=@(theta)2*cos(theta)+1i*2*sin(theta);
gprime=@(theta)-2*sin(theta)+1i*2*cos(theta);
q1 = integral(@(t) fun(g(t)).*gprime(t),0,2*pi)
Best wishes
Torsten.
3 Kommentare
Torsten
am 12 Mär. 2015
Yes, above I parametrized a circle of radius 2 around z=0 in g(theta) ...
Best wishes
Torsten.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Numerical Integration and Differentiation finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!