splitting matrix using while loop

I have matrix called x. when I run the MATLAB, x creates a random matrices. For example, if it creates the 1x650 matrix, i have to split this matrix _ by using while loop_ into 7 segments (Each segment will be of length 100, except for the last one which will be of length 50). I have to use while loop for my assignment. I just need the splitting part.

답변 (2개)

James Tursa
James Tursa 2017년 11월 23일

0 개 추천

Hint, if x is your data then x(1:100) will be the first part, x(101:200) will be the second part. Etc.
Walter Roberson
Walter Roberson 2017년 11월 23일

0 개 추천

for K = 1 : 7
segment{K} = ....
end
  • For K = 1 you need to extract 1 to 100
  • for K = 2 you need to extract 101 to 200
  • for K = 3 you need to extract 201 to 300
So for K = N you need to extract the 100 items ending at N*100, with the exception of the very last iteration.

카테고리

도움말 센터File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

질문:

2017년 11월 23일

답변:

2017년 11월 23일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by