if statement is not working
Show older comments
Hi all,
I have the follwoing code that runs fine but no output of the if statement for some reason:
theta = [-90.0000 -63.4746 -52.1364 -43.1736 -35.3765 -28.2737 -21.6183 ...
-15.2575 -9.0847 -3.0170 3.0170 9.0847 15.2575 21.6183 28.2737 ...
35.3765 43.1736 52.1364 63.4746 90.0000];
x0 = 0.1250;
y0 = 0;
if theta >= 41.19 & theta <= 90
inter_r = -(1/sin(theta))*[-sin(theta) cos(theta)*(x0-1)-y0.*sin(theta)];
end
An error of (Unrecognized function or variable 'inter_r') occurs.
Any help would be appreicted.
Thanks.
Accepted Answer
More Answers (1)
Abolfazl Chaman Motlagh
on 8 Dec 2021
the condition theta >= 41.19 & theta <= 90 is a logical vector with 20 values. if you want to calculate such a formula for those theta that satisfy the condition. you can use for loop or vectorize code.
theta = [-90.0000 -63.4746 -52.1364 -43.1736 -35.3765 -28.2737 -21.6183 ...
-15.2575 -9.0847 -3.0170 3.0170 9.0847 15.2575 21.6183 28.2737 ...
35.3765 43.1736 52.1364 63.4746 90.0000];
x0 = 0.1250;
y0 = 0;
for i=1:numel(theta)
if theta(i)>= 41.19 & theta(i)<= 90
inter_r(i,1:2) = -(1/sin(theta(i)))*[-sin(theta(i)) cos(theta(i))*(x0-1)-y0.*sin(theta(i))];
else
inter_r(i,1:2) = nan; % for example
end
end
or vectorize
Condition = theta >= 41.19 & theta <= 90;
inter_r(Condition,1:2)=repmat(-(1./sin(theta(Condition)))',[1 2]).* ...
[-sin(theta(Condition))' (cos(theta(Condition))*(x0-1)-y0.*sin(theta(Condition)))'];
inter_r(~Condition,:)=nan;
2 Comments
Lama Hamadeh
on 9 Dec 2021
Abolfazl Chaman Motlagh
on 9 Dec 2021
i see you accept another answer. it's good to hear it solves your problem. in case you still want to tell me what exactly is wrong in this answer, i can gladly help.
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!