how to stop overwriting results of a for loop in an array

5 visualizzazioni (ultimi 30 giorni)
Hello,
I know this is a common question, so sorry in advance, but the other responses have not been working with mine, probably because I haven't been Implementing them correctly, which is why I'm here. In the code below, i have a file that contains a variabe LAnkle, which is 205x4. I am only concerend with the first and fourth columns however. The goal is to find the trough points, where the previous and following values are greater, and put them in the array y. However, when I do this y only equates to one value, it seems to be overwritten everytime. When I use disp(x) in the script, it displays all values in the fourth column as well, not just the trough points. Any help is appreciated.
clear,clc
load LAnkle_tracking.mat
plot(LAnkle(:,1),LAnkle(:,4),'k.')
y=zeros(1,length(LAnkle));
for i=2:length(LAnkle)-1
x=LAnkle(i,4);
if LAnkle(i-1,4)>x<LAnkle(i+1,4)
y=(x);
end
end

Risposte (1)

KSSV
KSSV il 18 Set 2020
clear,clc
load LAnkle_tracking.mat
plot(LAnkle(:,1),LAnkle(:,4),'k.')
y=zeros(1,length(LAnkle));
for i=2:length(LAnkle)-1
x=LAnkle(i,4);
if LAnkle(i-1,4)>x<LAnkle(i+1,4)
y(i)=(x);
end
end
  1 Commento
John Campbell
John Campbell il 18 Set 2020
This seems to make sense, but when I tried it it contained every value of LAnkle(:,4) except the first and last values, and seemed to ignore the if statement.

Accedi per commentare.

Categorie

Scopri di più su Argument Definitions in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by