Borrar filtros
Borrar filtros

zooming out of a signal?

1 visualización (últimos 30 días)
Dick Rusell
Dick Rusell el 10 de Oct. de 2014
Respondida: Azzi Abdelmalek el 10 de Oct. de 2014
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)

Respuestas (1)

Azzi Abdelmalek
Azzi Abdelmalek el 10 de Oct. de 2014
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)

Categorías

Más información sobre Visual Exploration en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by