Combine If statement and for loop?!

170 views (last 30 days)
Christian
Christian on 2 Mar 2017
Commented: Christian on 2 Mar 2017
Hello everybody,
I would like to combine the for loop with an if Statement:
if x<0
for i=1:length(gradient);
delta_x_{i} = x(i)-sqrt(r^2/(1+gradient(i).^2));
delta_x=[cell2mat(delta_x_)]';
delta_y_{i} = gradient(i)*delta_x(i);
delta_y=[cell2mat(delta_y_)]';
end
else
for j=1:length(gradient);
delta_x_{j} = x(j)+sqrt(r^2/(1+gradient(j).^2));
delta_x=[cell2mat(delta_x_)]';
delta_y_{j} = gradient(j)*delta_x(j);
delta_y=[cell2mat(delta_y_)]';
end
end
But as far as I can see, it is not working? What am I doing wrong? I guess I'm not seeing the wood for the trees...
Appreciate any Help! Christian
  4 Comments
Stephen23
Stephen23 on 2 Mar 2017
Edited: Stephen23 on 2 Mar 2017
Hmm... not totally clear to me, but someone may be able to make sense of it. Perhaps you should skip the if altogether and use logical indexing:
Christian
Christian on 2 Mar 2017
I got it!!!
for i=1:length(gradient1);
if x(i) > 0
delta_x(i) = x(i)+sqrt(r^2/(1+gradient1(i).^2));
delta_y(i) = gradient1(i)*delta_x_(i);
end
if x(i) < 0
delta_x_(i) = x(i)-sqrt(r^2/(1+gradient1(i).^2));
delta_y_(i) = gradient1(i)*delta_x_(i);
end
end

Sign in to comment.

Answers (2)

Andrei Bobrov
Andrei Bobrov on 2 Mar 2017
Edited: Andrei Bobrov on 2 Mar 2017
delta_x = x(:)+sign(x(:)).*sqrt(r^2./(1+gradient1(:).^2));
delta_y = gradient1(:).*delta_x;
We use gradient1 instead gradient. gradient - it's function from MATLAB
  1 Comment
Christian
Christian on 2 Mar 2017
the "Gradient" is just an example. in my script I use german words :)

Sign in to comment.


Steven Lord
Steven Lord on 2 Mar 2017
x is a vector. From the documentation for the if keyword, "if expression, statements, end evaluates an expression, and executes a group of statements when the expression is true. An expression is true when its result is nonempty and contains only nonzero elements (logical or real numeric). Otherwise, the expression is false."
So the body of your if statement:
if x<0
is only executed if ALL the elements of x are less than 0. Otherwise you drop into the else section.
Your corrected code is closer, using a logical scalar as the if expression, but you may be missing a couple cases. If you've preallocated delta_x and delta_y, having 0 as the last element in x won't leave those two arrays shorter than you expect. You may also want to consider what happens if x is Not-a-Number, better known as NaN.
  1 Comment
Christian
Christian on 2 Mar 2017
Thank you for your advice. I deleted all NaN right before the for loop and now it seems to work. At least the code does what I want it to do :)

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!