Graphing a complex exponential

4 次查看(过去 30 天)
so i am trying to graph this complex exponential and i keep getting errors in the portion of the code for the exponential(says possibly missing ')' ). the function is
e^((i*pi)/6t)
where t is my time vector t= 0:0.1:10;
Would some mind lending a hand.

采纳的回答

Walter Roberson
Walter Roberson 2018-2-2
exp(1i*pi/6./t)
or
exp(1i*pi/6.*t)
depending on whether the t is intended to be in the numerator or denominator
  1 个评论
Walter Roberson
Walter Roberson 2018-2-3
t = 0:0.1:10;
f1 = exp(1i*pi/6./t);
f2 = exp(1i*pi/6.*t);
plot(t, real(f1), 'b^', t, imag(f1), 'bv', t, real(f2), 'g^', t, imag(f2), 'gv');
legend({'./t real', './t imag', '.*t real', '.*t imag'})

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by