Insert rows in a matrix
이전 댓글 표시
Hi, I have the following problem: matrix
AA=[NaN 1 2 3 4 5
NaN 10 20 30 40 50
...............
NaN 1E8 2E8 3E8 4E8 5E8 ];
There is possible to insert every 10 row the following row:
[NaN NaN 99 Nan 77 NaN];
without a loop?
Thank you
채택된 답변
추가 답변 (1개)
Anthony Poulin
2015년 6월 24일
편집: Anthony Poulin
2015년 6월 24일
You can try something like this (with B = [NaN NaN 99 Nan 77 NaN]):
for i=10:10:100
AA = [AA(1:i, 1:end); B; AA(i+1:end,1:end)];
end
(100 is an arbitrary value)
댓글 수: 4
Guillaume
2015년 6월 24일
That's not going to work as you resize AA on every step of the loop, yet still use the original range of rows. On step 2, you're inserting B on row 20, which is the original row 19 of AA, on step 3, you're inserting B on row 30, which is the original row 28 of AA, etc. Each step, you're more and more off the target.
Rather than an arbitrary value, you'd use size(AA, 1) for the end index.
Ionut Anghel
2015년 6월 24일
Anthony Poulin
2015년 6월 24일
Or just replacing "i" by "i + i/10 -1".
David Verrelli
2018년 3월 27일
Or run the loop 'backwards', as in for i=100:-10:10 (although 100 might not be the correct terminal value for your case, as already noted). Even though the matrix is still resized at each step, at least this way the subsequent changes aren't affected by previous steps.
BTW, "1:end" can just be replaced with ":" alone.
카테고리
도움말 센터 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!