フィルターのクリア

Complex number with exponential

6 ビュー (過去 30 日間)
Abdullah Azzam
Abdullah Azzam 2021 年 3 月 8 日
コメント済み: Walter Roberson 2021 年 3 月 8 日
I am trying to solve this equation however matlab isn't returning any solution. The equation is as follow:
Y=2/(exp(Ci)+exp(-Ci)) where C is constant and i is the imaginary number
I tried using the complex function but it doesn't give correct answer when combined with exp.
  3 件のコメント
Abdullah Azzam
Abdullah Azzam 2021 年 3 月 8 日
Just find the value of Y
Walter Roberson
Walter Roberson 2021 年 3 月 8 日
Y = 2./(exp(C*1i)+exp(-C*1i))
In vectorized form.
Or
Y = 1./cosh(C)

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

回答 (1 件)

Walter Roberson
Walter Roberson 2021 年 3 月 8 日
Y = 1/cosh(C)
cosh(C) * Y = 1
cosh(C) = 1/Y
C = acosh(1/Y)

カテゴリ

Help Center および File ExchangeParticle & Nuclear Physics についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by