complex closed contour integral
이전 댓글 표시
plz explain to me how can I use matlab programe for solution of complex contour integral :
example : find ∮((z+1)dz)/(z^3-2z^2 ) around z-2=1 where 1 is Radius of the circle ?
when I solution it Manually the result was equal:-π*i
댓글 수: 1
Shariefa Shaik
2017년 11월 1일
explain the code sir
채택된 답변
추가 답변 (1개)
Torsten
2015년 3월 13일
What about
fun=@(z)(z+1)./(z.^3-2*z.^2);
g=@(theta)(1+2*cos(theta))+1i*(2+2*sin(theta));
gprime=@(theta)-2*sin(theta)+1i*2*cos(theta);
q1=quad(@(t) fun(g(t)).*gprime(t),0,2*pi)
Best wishes
Torsten.
댓글 수: 3
salah zetreni
2015년 3월 13일
Shriya Varanasi
2022년 4월 10일
How do you get the graph?
Torsten
2022년 4월 10일
What graph ? The result is the value of the contour integral - thus a single number.
카테고리
도움말 센터 및 File Exchange에서 Numerical Integration and Differentiation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!