t=[-10:0.001:10]; a=0+i*pi*3/8; c=1*exp(i*pi/2); % x(t) in complex form x=c*exp(a*t); % amplitude of x(t) x_abs=abs(x); % phase of x(t); x_phase=phase(x); % real of x(t) x_real=real(x); % imaginary of x(t) x_img=imag(x); close all; figure(1); subplot(2,2,1); plot(t,x_real); title('real'); subplot(2,2,2); plot(t,x_img); title('imaginary'); subplot(2,2,3); plot(t,x_abs); title('amplitude'); subplot(2,2,4); plot(t,x_phase); title('phase');