Problem with the cycle

7 views (last 30 days)
Tiago Tavares
Tiago Tavares on 19 Jul 2018
Answered: jonas on 19 Jul 2018
Hello. It's a relative simples question but im having problem with the next cycle:
for n=1:length(B)
for h=1:10
Center(n)= B(h);
end
end
I want to read a cell array B() that has an increment of 10 and save the value in the Center cell array.
Example: for Center(1) = B(1) and for Center(2)= B(10).
What is happening is that the B(h) only see the value of B(10) and fill the Center cell only with that value. Prior to the code presented i have a cell array B that is 1x1351. What am i missing?
  3 Comments
Tiago Tavares
Tiago Tavares on 19 Jul 2018
If you are a football fan: Jonas scores!
If not, thank you very much! It worked!
jonas
jonas on 19 Jul 2018
Edited: jonas on 19 Jul 2018
Okay, I'm just gonna put it in an answer. Figured I had misunderstood the question :)

Sign in to comment.

Accepted Answer

jonas
jonas on 19 Jul 2018
Center=B(1:10:end)

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!