Sudden changes in data values - how to detect?
20 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
James Wright
le 25 Fév 2015
Réponse apportée : Steven Lord
le 2 Nov 2022
I have a matrix of data with around 2000 rows and only 1 column. They first few hundred are all numerical values between 1-10 and then all of a sudden, there is a change in the values to numbers between 1000-10000. How could i write a code to find the position in which this change occurs? I have been stuck with the question for several days and i can't think of a logical way to do it. I am extremely new to matlab.
Thank you
0 commentaires
Réponse acceptée
Star Strider
le 25 Fév 2015
The easiest way:
x = [randi(10, 20, 1); randi([1000 10000], 20, 1)]; % Created Data
jump = find(diff([0; x]) > 10, 1, 'first'); % Index
The ‘jump’ variable has the first index of the difference in the values that is greater than 10. Run my simulated code — and experiment with it to see how it works — then apply it to your vector.
4 commentaires
RobB
le 8 Juin 2015
This could help me, but is it possible to show the location of multiple changes? Say you had several large jumps in one column of data...is it possible to have matlab tell us more than just the first location? Thanks!
Plus de réponses (1)
Steven Lord
le 2 Nov 2022
Since this question was asked the ischange function has been added to MATLAB. Its short description is "Find abrupt changes in data".
0 commentaires
Voir également
Catégories
En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!