How do I plot d using Matlab

1 回表示 (過去 30 日間)
dab483
dab483 2014 年 2 月 12 日
コメント済み: dab483 2014 年 2 月 12 日
I have this:
d(:,:,i) = 0.005*sin(0.5*pi*t(i))*cos(0.5*pi*t(i))
i=1:Nt
t = linspace(0,100,Nt+1)
Nt=1000
How do I plot d using Matlab?

採用された回答

Mischa Kim
Mischa Kim 2014 年 2 月 12 日
編集済み: Mischa Kim 2014 年 2 月 12 日
Use
Nt = 1000
t = linspace(0,100,Nt+1)
d = 0.005*sin(0.5*pi*t).*cos(0.5*pi*t)
plot(t,d)
Any reason you are using a 3-dimensional array d ?
  1 件のコメント
dab483
dab483 2014 年 2 月 12 日
yeah..i missing dot there. Got that. Thanks
i am running an EKF with d as disturbances.

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

その他の回答 (1 件)

Wayne King
Wayne King 2014 年 2 月 12 日
Not sure why you are trying to construct your signal like this. Take advantage of MATLAB's vector operations.
Nt = 100;
t = linspace(0,100,Nt);
d = 0.005*sin(0.5*pi*t)+cos(0.5*pi*t);
plot(t,d)

カテゴリ

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