Effacer les filtres
Effacer les filtres

finding the number of consecutive data

1 vue (au cours des 30 derniers jours)
joseph Frank
joseph Frank le 1 Fév 2013
Hi,
I have a vector of 5000 obeservations containing nan values and prices. How can I tell if this vector contains 60 consecutive prices without any nan interruption?

Réponse acceptée

Thorsten
Thorsten le 1 Fév 2013
This should do the job:
obs1 = observations(1);
Ncons = 1;
for i = 2:numel(observations)
if observations(i) == obs1
Ncons = Ncons + 1;
if Ncons == 60, break; end
else
obs1 = observations(i);
Ncons = 1;
end
end
if Ncons == 60
disp('60 consecutive prices found.')
end

Plus de réponses (0)

Catégories

En savoir plus sur Financial Toolbox dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by