row deletion not working, can you help?

2 vues (au cours des 30 derniers jours)
david ocallaghan
david ocallaghan le 25 Avr 2019
%I have the following fft calc;
freqMin = 10;
freqCap = 50;
te = (time>=5.0);
fs = (length(time(te))-1)/(max(time(te))-min(time(te))); % fs = 1000
NFFTt = length(Ty(te));
Yt = fft(Ty(te),NFFTt);
freqt = ((0:1/NFFTt:1-1/NFFTt)*fs).'; % freqt = 0, 1.9960, 3.9920, ..., 998.004
ampt = abs(Yt);
fftArrayt = [freqt,ampt]
idxFreqCapt = find(freqt > freqCap & freqt < freqMin) % returns this -> 0×1 empty double column vector
fftArrayt(idxFreqCapt,:) = [] % returns this ->
% fftArrayt =
%
% 1.0e+03 *
%
% 0 0.8824
% 0.0020 0.9291
% 0.0040 0.7940
% 0.0060 0.4000
% ...
%
% Is it because it's looking at the rows and not seeing the *1000 so ignoring the delete rule?
% Can you help me delete freqt below 10 and above 50?

Réponse acceptée

david ocallaghan
david ocallaghan le 26 Avr 2019
% As I wanted to keep 10 < fftArrayt < 50, I replaced the logic with...
idxFreqCapt = find(freqt > freqCap);
idxFreqMint = find(freqt < freqMin);
idxFreqt = [idxFreqMint;idxFreqCapt]
fftArrayt(idxFreqt,:) = [];

Plus de réponses (0)

Catégories

En savoir plus sur Startup and Shutdown dans Help Center et File Exchange

Produits


Version

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by