Complex number with exponential
Afficher commentaires plus anciens
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 commentaires
KSSV
le 8 Mar 2021
Solve the equation for what?
Abdullah Azzam
le 8 Mar 2021
Walter Roberson
le 8 Mar 2021
Y = 2./(exp(C*1i)+exp(-C*1i))
In vectorized form.
Or
Y = 1./cosh(C)
Réponses (1)
Walter Roberson
le 8 Mar 2021
Y = 1/cosh(C)
cosh(C) * Y = 1
cosh(C) = 1/Y
C = acosh(1/Y)
Catégories
En savoir plus sur Mathematics dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!