Solving Complex Line Integrals

29 ビュー (過去 30 日間)
Josée Mallah
Josée Mallah 2021 年 3 月 21 日
コメント済み: Bjorn Gustavsson 2021 年 3 月 22 日
Hello everyone!
How to define a circle (e.g. | z-1 |=3) as an integral path using Waypoints?
For example, C here is a square contour:
C = [1+i -1+i -1-i 1-i];
q2 = integral(fun,1,1,'Waypoints',C)
How to define C as a circle?
Or else, how could I define the same circle ( | z-1 |=3) instead of the unit circle in the code below?
g = @(theta) cos(theta) + 1i*sin(theta);
gprime = @(theta) -sin(theta) + 1i*cos(theta);
q1 = integral(@(t) fun(g(t)).*gprime(t),0,2*pi)
Thank you
  1 件のコメント
darova
darova 2021 年 3 月 21 日
THe question is unclear. Do you have any picture or something? What are you trying to integrate?

サインインしてコメントする。

採用された回答

Bjorn Gustavsson
Bjorn Gustavsson 2021 年 3 月 22 日
Wouldn't it be simplest to just multiply the radius of the polar representation of your unit-circle with the desired radius?
g = @(theta) 3*cos(theta) + 1i*3*sin(theta);
gprime = @(theta) -3*sin(theta) + 1i*3*cos(theta);
q1 = integral(@(t) fun(g(t)).*gprime(t),0,2*pi);
If you have some more complex curve sometimes those too can be more straightforwardly represented in polar coordinates. Then
You might also be lucky enough to have an analytical function - which makes integration around a closed loop in the complex plane that much easier.
HTH
  2 件のコメント
Josée Mallah
Josée Mallah 2021 年 3 月 22 日
I guess this is satisfactory enough! Ok I got how it works, thank you so much.
Bjorn Gustavsson
Bjorn Gustavsson 2021 年 3 月 22 日
Great.
It's just to remember that any single-variable parameterization of your perimeter is good enough as long as you have some way to calculate dl too.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeNumerical Integration and Differentiation についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by