Get column E based on transition in Column I
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Kcire L
le 20 Sep 2022
Réponse apportée : Dyuman Joshi
le 20 Sep 2022
Hello,
I have imported a spreadsheet into Matlab and am trying to look at where column I transitions from a 1 to a 0.
When that transition is determined, I then need to take the value of column E.
Could anyone help me do this? I have attached an image to this request.
Thank you in advance!
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1130630/image.png)
0 commentaires
Réponse acceptée
Dyuman Joshi
le 20 Sep 2022
y=[1 1 1 1 1 0 0 0 0 1 1 0 1 0 1 1 0 0 0 0 0 0 0];
i=find(diff(y)==-1)+1
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Introduction to Installation and Licensing 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!