zooming out of a signal?

1 次查看(过去 30 天)
Dick Rusell
Dick Rusell 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 CenterFile Exchange 中查找有关 Visual Exploration 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by