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

4 次查看(过去 30 天)
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

回答(1 个)

KSSV
KSSV 2020-9-18
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 个评论
John Campbell
John Campbell 2020-9-18
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.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Argument Definitions 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by