matlab command for complex exponential function.
22 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
how to write complex exponential function in matlab
0 Commenti
Risposta accettata
James Tursa
il 17 Giu 2014
The exp function works for complex inputs:
>> z = 1 + 2i
z =
1.0000 + 2.0000i
>> exp(z)
ans =
-1.1312 + 2.4717i
If you want something else you will need to be more specific with your question.
2 Commenti
James Tursa
il 18 Giu 2014
x = 2 column array of magnitude and argument
x(:,1).*exp(1j*x(:,2))
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!