How to solve three complex equations

1 回表示 (過去 30 日間)
Najiya Omar
Najiya Omar 2019 年 6 月 28 日
コメント済み: Najiya Omar 2019 年 6 月 30 日
please find the attached file for an example of the system
Thanks in advance
  3 件のコメント
Alex Mcaulley
Alex Mcaulley 2019 年 6 月 28 日
@Torsten, this symbol indicates the phase of the complex number
Walter Roberson
Walter Roberson 2019 年 6 月 29 日
Does the 1<0 (approximate rendering) indicate real value 1 complex phase 0, complex(1,0)?
Does j indicate sqrt(-1)?

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

採用された回答

Alex Mcaulley
Alex Mcaulley 2019 年 6 月 28 日
Easy using matrix notation:
A = [1.46j,0.9j,-0.36j;0.36,-0.42,-1.345;0.9j,1.65j,0.42];
b = [1;0;1];
I = A\b
I =
-0.0059 - 0.4749i %I1
0.0079 - 0.3480i %I2
-0.0040 - 0.0184i %I3
  5 件のコメント
David Goodmanson
David Goodmanson 2019 年 6 月 30 日
編集済み: David Goodmanson 2019 年 6 月 30 日
Hi Najiya,
Alex's answer has a typo in that the last entry in A is 0.42 rather than j0.42. So:
A = [j*[1.46,0.9,-0.36];[0.36,-0.42,-1.345];j*[0.9,1.65,0.42]];
b = [1;0;1];
I = A\b
I =
0.0000 - 0.4841i
0.0000 - 0.3357i
0.0000 - 0.0247i
I have no idea why I1 disagrees with what is in the book, although books have been known to be wrong. Unlike everything on this website.
Najiya Omar
Najiya Omar 2019 年 6 月 30 日
Hi David,
You got it for me!! It worked now. Thank you very much. Greatly appreciated.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeNumber Theory についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by