For-Loop Algorithm
Show older comments
Can anybody help me with this?
A = cell(10,1) %Cell Array with 10 Rows and 1 Column
B is another cell array with contents as such:- B = [1][2][3]
I wish to insert the content of B into A in such manner using for-loop: A = [1][2][3][1][2][3][1][2][3][1]
How do I achieve such result with for loop?
Accepted Answer
More Answers (1)
Jan
on 2 Dec 2011
0 votes
Hint: mod(1:10, 3)
I assume, this is a homework and do not post the full solution.
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!