Hello, I did a for loop but my friend told me it is not the correct matlab syntax. Can anyone help me the for loop is in the description below:

3 views (last 30 days)
for xa=1;
if xa-1>xa & xa+1>xa;
Lm=xa;
else xa=xa+1;
end
end

Answers (2)

Chunru
Chunru on 17 Jun 2022
It looks like you want to find the local minima
xa = randn(30, 1);
Lm = nan(size(xa));
for i=2:length(xa)-1
if xa(i-1)>xa(i) && xa(i+1)>xa(i)
Lm(i) = xa(i);
end
end
plot(xa, 'r-');
hold on
stem(Lm, 'bo');

John D'Errico
John D'Errico on 23 Jun 2022
Edited: John D'Errico on 23 Jun 2022
for xa=1;
This is not a loop. It does nothing but assign the value 1 to the variable xa. NOTHING. No loop.
Instead, it looks like you need to learn about while loops. The loop you TRIED to write wants to continue until you see some event happen. And that is when you use a while loop.
But next, inside the attempted loop you did this:
if xa-1>xa & xa+1>xa;
Look at the first clause in that test. Will it EVER be true that xa-1 > xa? Do you agree that xa-1 must be less than xa? After all, subtracting the number 1 must decrease that number.
Similarly, look at the second clause. Must xa+1 ALWAYS be greater than xa? After all, adding the number 1 increases the value of whatever you add it to.
So what you wrote still makes no sense at all. And that means you need to think about what you wanted to do here, while at the same time learning what a while loop does.

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!