How to plot both real and imaginary part of complex exponential?

6 ビュー (過去 30 日間)
Duy Dang
Duy Dang 2020 年 10 月 27 日
回答済み: Star Strider 2020 年 10 月 27 日
Hi,
I dont know how to plot this, since there is imaginary unit in the function, please help
x(t) = t^2 + j2πt, 0 ≤ t ≤ 10 , plot the approximate signals using 5 terms of the complex exponential form. This is what is got. Not sure if it right?
clc;
clear all;
close all;
t0 = 0;
T = 10;
w = 2*pi/T
syms t
x = t^2 +(j*2*pi*t)
k = -2:2 %5 terms
a = (1/T)*int(x*exp(-1j*k*w*t),t,t0,t0+T); %%complex exponential
  3 件のコメント
Duy Dang
Duy Dang 2020 年 10 月 27 日
編集済み: Duy Dang 2020 年 10 月 27 日
k is the 5 terms that the question asked.I know use real, img in this problem but I dont know how to proper use it because I always get error. like how to set it up

サインインしてコメントする。

回答 (1 件)

Star Strider
Star Strider 2020 年 10 月 27 日
See my Answer to your duplicate Question: How to plot both real and imaginary part of complex exponential?

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by