Help needed in using resample function

i'm upsampling a signal from 100k to 30M samples using upsample function of MATLAB. But when i use resample function, the output is different.How can i use resample to get exact output like that of upsample function?

1 comentario

Xylicia Richard
Xylicia Richard el 5 de Jun. de 2016
Here out_I signal is Gaussain filtered.
out_I_up=upsample(out_I,5000); xx=300*fir1(100,1/5000); % order N=100, cutoff frequency=1/300 out_i=filter(xx, 1, out_I_up);
Can't i replace it with??
out_i=resample(out_I,3000,1);

Iniciar sesión para comentar.

 Respuesta aceptada

the cyclist
the cyclist el 5 de Jun. de 2016

2 votos

upsample and resample do completely different things. upsample inserts zeros, while resample randomly pulls values from the array.
There is no way to make one function to behave like the other.

Más respuestas (0)

Etiquetas

Preguntada:

el 5 de Jun. de 2016

Comentada:

el 5 de Jun. de 2016

Community Treasure Hunt

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

Start Hunting!

Translated by