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. Answer from James Tursa on mathworks.com
🌐
MathWorks
mathworks.com › matlab › mathematics › elementary math › exponents and logarithms
exp - Exponential - MATLAB
Y = exp(X) returns the exponential ex for each element in array X. For complex elements z = x + iy, it returns the complex exponential
Find elsewhere
🌐
MathWorks
mathworks.com › matlabcentral › answers › 667618-plotting-complex-exponential-function
plotting complex exponential function - MATLAB Answers - MATLAB Central
November 29, 2020 - Hi friends, I am tring to plot the graph of y = (1*e^-i20*pi * t) + (4*e^i20*pi *t ) where t= 5:-0.1:0 can you please help me in this case. thank you.
🌐
MathWorks
mathworks.com › matlabcentral › answers › 627348-how-to-plot-both-real-and-imaginary-part-of-complex-exponential
How to plot both real and imaginary part of complex exponential? - MATLAB Answers - MATLAB Central
October 27, 2020 - Hi, I'm new to matlab since I try to plot this signal as complex exponential form with 5 terms but I got stuck clc; clear all; close all; t0 = 0; T = 10; k = 1:6 w = 2*pi/T syms t x = ...
🌐
MathWorks
mathworks.com › matlabcentral › answers › 116274-how-to-plot-a-complex-exponential-equation
How to plot a complex exponential equation - MATLAB Answers - MATLAB Central
February 15, 2014 - So, I am doing some work on photolithography and I need to plot a diffraction pattern with the following diffration pattern equation: H(X,Y)=exp(i*(pi*r^2)/(lambda*z)) lambda is 400nm, z is 10cm...
🌐
Northwestern University
ece.northwestern.edu › local-apps › matlabhelp › techdoc › ref › exp.html
exp (MATLAB Functions)
The exp function is an elementary function that operates element-wise on arrays. Its domain includes complex numbers. Y = exp(X) returns the exponential for each element of X.
🌐
Stack Exchange
math.stackexchange.com › questions › 4128407 › how-to-solve-this-system-of-equations-with-complex-exponential-in-matlab
How to solve this system of equations with complex exponential in MATLAB? - Mathematics Stack Exchange
where $k = 1, 2, \dots, K$ and $\lambda_k$ is a complex vector of size $K$. I am trying to find ways that is better than symbolic method. Could someone suggest me a simpler solution that can handle large $K$? ... $$ \cases{ 2\pi\nu_k\Delta t = \arctan\left(\frac{y_k}{x_k}\right)\\ e^{-\alpha_k\Delta t}=\sqrt{x_k^2+y_k^2} } $$ ... $\begingroup$ Thank you, I got this. Is there any function available in Matlab (for eg.
🌐
MathWorks
mathworks.com › matlabcentral › answers › 230648-how-to-perform-this-complex-exponential-fitting
How to perform this Complex Exponential Fitting? - MATLAB Answers - MATLAB Central
July 21, 2015 - Experiment result can be represented as a sum of damped exponential, sum over 1..k. y(n)=sum(a(k)*exp(-(d(k)+j*w(k))*n+j*p(k)) The experimental result, y, is vector from 1..n; a, d, w, p...
🌐
MathWorks
mathworks.com › matlabcentral › answers › 185037-exponential-form-polar-form-cartesian-form-for-complex-numbers-question
Exponential form, polar form, Cartesian form for complex numbers question. - MATLAB Answers - MATLAB Central
March 24, 2015 - Among others, see the Complex Numbers core MATLAB and the Symbolic Math Toolbox Complex Numbers documentation. ... https://www.mathworks.com/matlabcentral/answers/185037-exponential-form-polar-form-cartesian-form-for-complex-numbers-question#comment_274362
🌐
UNSW Sites
maths.unsw.edu.au › sites › default › files › MatlabSelfPaced › lesson1 › MatlabLesson1_Complex.html
MATLAB Lesson 1 - Complex numbers
The home page of UNSW's School of Mathematics & Statistics, with information on courses, research, industry connections, news, events and more.
🌐
MathWorks
mathworks.com › matlabcentral › answers › 2061162-is-there-a-faster-complex-exponent
Is there a faster complex exponent? - MATLAB Answers - MATLAB Central
December 15, 2023 - To conclude, there is no obvious way to beat MATLAB exp(i*Q) performance for real Q. Hypothetically, a compiled function invoking simultaneous sin/cos evaluation might squeeze out a factor of two, but that does not account for complex number management.