필터 지우기
필터 지우기

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 CenterFile Exchange에서 Data Type Conversion에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by