please help in for loop :(

2 views (last 30 days)
Mech
Mech on 6 Jun 2014
Commented: Mech on 7 Jun 2014
for m=1:2
rx=1+2*l*sin(m*b)*m
ry=1+2*l*cos(m*b)*m;
end
plot([1 rx 10],[1 ry 10]);
where l is given I need two value for rx and also for ry I mean that the result should be like this :
rx=0+2*l*sin(1*b)*1
ry=0+2*l*cos(1*b)*1;
rx=0+2*l*sin(2*b)*2
ry=0+2*l*cos(2*b)*2;
  2 Comments
John D'Errico
John D'Errico on 6 Jun 2014
Huh? Totally unclear as to what you are trying to do.
Image Analyst
Image Analyst on 6 Jun 2014
It's not clear if the first term should be 0, like after the loop, or 1, like you have it inside the loop. My answer below assumes 1.

Sign in to comment.

Accepted Answer

Image Analyst
Image Analyst on 6 Jun 2014
Get rid of the for loop. Just do this:
m=1:2
rx=1+2*l*sin(m*b)*m
ry=1+2*l*cos(m*b)*m;
  5 Comments
Image Analyst
Image Analyst on 7 Jun 2014
It means element by element multiplication, instead of a matrix multiplication.
Mech
Mech on 7 Jun 2014
thank you Analyst ;)

Sign in to comment.

More Answers (0)

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!