Borrar filtros
Borrar filtros

Graphing a complex exponential

3 visualizaciones (últimos 30 días)
justin stephens
justin stephens el 2 de Feb. de 2018
Comentada: Walter Roberson el 3 de Feb. de 2018
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.

Respuesta aceptada

Walter Roberson
Walter Roberson el 2 de Feb. de 2018
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 comentario
Walter Roberson
Walter Roberson el 3 de Feb. de 2018
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'})

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by