for loop

1 view (last 30 days)
mahaveer hanuman
mahaveer hanuman on 30 Jul 2011
i have a=2x10 i need to use second row element how can i do it
i=1:length(a) i get elements of first row then how abt second row
please help me

Accepted Answer

Paulo Silva
Paulo Silva on 30 Jul 2011
a(1,:) %first row
a(2,:) %second row

More Answers (1)

mahaveer hanuman
mahaveer hanuman on 30 Jul 2011
num = 100; source = randint(num,2);
i =num(1,:); j =num(2,:); parity = mod(source(i)+ source(j),2); index out of bound
  1 Comment
Paulo Silva
Paulo Silva on 30 Jul 2011
good luck getting the second row from a scalar value like the one from num

Sign in to comment.

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!