How to determine the absolute value of a complex exponential function containing a symbolic variable?

2 ビュー (過去 30 日間)
I am determining the frequency response of a parallel RLC circuit. The input current is 10*sin(w*t). The phasor form is, I = 10 exp(j*w*t). The abs(I) is 10. But matlab gives 10*exp(-imag(t*w)). But whatever the value of w*t, the absolute value is always 10. How can I get magnitude from such complex exponential, without substituting the value of w and t?

回答 (1 件)

Torsten
Torsten 2022 年 12 月 3 日
syms omega t real
syms I0 positive
I = I0*exp(1i*omega*t);
abs(I)
ans = 
  3 件のコメント
Torsten
Torsten 2022 年 12 月 12 日
Yes, if you don't restrict variables to e.g. being integer or real, they are assumed as complex by default.

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

カテゴリ

Help Center および File ExchangeSymbolic Variables, Expressions, Functions, and Preferences についてさらに検索

製品


リリース

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by