フィルターのクリア

zooming out of a signal?

1 回表示 (過去 30 日間)
Dick Rusell
Dick Rusell 2014 年 10 月 10 日
回答済み: Azzi Abdelmalek 2014 年 10 月 10 日
Can anyone help me zoom out or change the window size? Because the signal I'm using creating a blue box because of the high frequency.
f=400;
ts=1/8000;
T=5;
t=0:ts:T;
y=sin(2*pi*f*t);
plot(t,y)

回答 (1 件)

Azzi Abdelmalek
Azzi Abdelmalek 2014 年 10 月 10 日
Reduce the value of T
f=400;
ts=1/8000;
T=0.01;
t=0:ts:T;
y=sin(2*pi*f*t);
plot(t,y)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by