reconstruct_FFT - Upsampling and Interpolation

reconstruct_FFT fills in zeros and performs an ideal lowpass filtering at the nyquist frequency.
158 téléchargements
Mise à jour 13 juin 2016

Afficher la licence

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

Citation pour cette source

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

Compatibilité avec les versions de MATLAB
Créé avec R2016a
Compatible avec toutes les versions
Plateformes compatibles
Windows macOS Linux
Catégories
En savoir plus sur Multirate Signal Processing dans Help Center et MATLAB Answers

Community Treasure Hunt

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

Start Hunting!
Version Publié le Notes de version
1.0.0.0

Image change.