determine the loop which satisfies the particular condition.
Show older comments
A=[1 1;2 2;3 3;4 4;5 5;6 6;7 7;8 8;9 9;10 10;11 11;12 12;13 13]
B=[3;4;3;3]
%I need to create this loop w.r.t A and B.
x1=A(1:B(1),:)
x2=A(B(1)+1:B(1)+B(2),:)
x3=A(B(1)+B(2)+1:B(1)+B(2)+B(3),:)
x4=A(B(1)+B(2)+B(3)+1:B(1)+B(2)+B(3)+B(4),:)
Accepted Answer
More Answers (1)
Andrei Bobrov
on 17 May 2014
x = mat2cell(A,B,size(A,2))
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!