When I am using A(:,9)= [ ]; for deletion, an error is shown (Matrix index is out of range for deletion.). What might the problem be?
1 次查看(过去 30 天)
显示 更早的评论
The matrix in which I have to perform deletion is 1*18. how can I perform deletion of elements from 9-18 if A(:,9)= [ ];(This is particularly for 9th element) is wrong?
0 个评论
采纳的回答
Akira Agata
2017-7-18
If the size your numeric array A is 1x18, simply A(9:18) = []; will delete 9th~18th elements from the array.
0 个评论
更多回答(1 个)
Walter Roberson
2017-7-18
If you are looping through a matrix doing tests and deleting rows (or columns) then what would look to be the obvious approach will result in errors. After you delete an entry, the ones after it "fall down" to fill the gap, like Tetris blocks. Then the matrix becomes smaller, so if it was 16 before then it becomes only 15 now and your loop to 16 now is going to fail when it tries to index item 16 (which fell down to 15....)
The easy work around for this is to start at the end of the array and loop backwards to the beginning.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Resizing and Reshaping Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!