フィルターのクリア

How to convert ?

2 ビュー (過去 30 日間)
Beibit Sautbek
Beibit Sautbek 2016 年 8 月 24 日
編集済み: Beibit Sautbek 2016 年 8 月 26 日
Sorry
  2 件のコメント
Guillaume
Guillaume 2016 年 8 月 24 日
If the definition of Pr is Pr = E^2, then the only correct result is Pr = 2.2007e+04 + 9.7496e+02i.
If the definition of Pr is Pr = ‖E‖^2, then the only correct result is Pr = 22030.
You certainly can't swap one for the other.
Star Strider
Star Strider 2016 年 8 月 24 日
@Guillaume —
The second is correct, but only partially so. Complex power is actually referred to in phasor notation:
Pr = [abs(E).^2 angle(E)*180/pi]
Pr =
22030 1.2683
here indicating a positive phase lag in degrees (inductive load).

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

採用された回答

Star Strider
Star Strider 2016 年 8 月 24 日
Use the abs function, then square the result:
E=1.4839e+02 + 3.2852e+00i;
Pr = abs(E).^2
Pr =
22030
This gives a lightly different result than 2.2009e+04 because of the lower precision in the numbers you posted.

その他の回答 (1 件)

Thorsten
Thorsten 2016 年 8 月 24 日

カテゴリ

Help Center および File ExchangeData Type Conversion についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by