필터 지우기
필터 지우기

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 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