reconstruct_FFT - Upsampling and Interpolation

reconstruct_FFT fills in zeros and performs an ideal lowpass filtering at the nyquist frequency.
157 descargas
Actualizado 13 Jun 2016

Ver licencia

Reconstruction of Original Signal based on Samples.
Upsampling including ideal lowpass filtering by FFT.
For ideal reconstruction, measurement interval must be
an integral multiple of periodicity of input signal!
Input arguments
Required
1. Time vector (equally spaced)
2. Sample vector (same length as time vector)
Optional Name-Value pairs
- 'Factor', N [positive integer] (default: 100)
Output will have N time as much samples as input.
- 'Plot', [logical] (default: false)
Plots spectrum of intermediate signals.
Or call reconstruct_FFT() without any arguments to view an example.

Example:
F_s = 5; % Sampling frequency
f0 = 2; % Signal frequency
time = 0:1/F_s:2-1e-12; % Time vector
samples = cos(2*pi*f0*time); % Signal vector
[ time_rec, samples_rec ] = reconstruct_FFT( time,samples );
figure; stem(time,samples); hold on; plot(time_rec, samples_rec);

Citar como

Daniel Frisch (2024). reconstruct_FFT - Upsampling and Interpolation (https://www.mathworks.com/matlabcentral/fileexchange/57651-reconstruct_fft-upsampling-and-interpolation), MATLAB Central File Exchange. Recuperado .

Compatibilidad con la versión de MATLAB
Se creó con R2016a
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS Linux
Categorías
Más información sobre Multirate Signal Processing en Help Center y MATLAB Answers.

Community Treasure Hunt

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

Start Hunting!
Versión Publicado Notas de la versión
1.0.0.0

Image change.