How do i re-insert an element into an array?
1 次查看(过去 30 天)
显示 更早的评论
My original array was A=[1 5 3 7 8 2]. I deleted some elements and the array became A=[1 3 7 8]. The elements I deleted are stored in the array DEL=[5 2] and the indexes they were deleted from are stored in the array INDX=[2 6].
How do I Insert the deleted elements back into array 'A' in their original indexes?
0 个评论
采纳的回答
Image Analyst
2016-6-17
Try this:
% A=[1 5 3 7 8 2]. I deleted some elements and the array became
A=[1 3 7 8]
% The elements I deleted are stored in the array
DEL=[5 2]
% and the indexes they were deleted from are stored in the array
INDX=[2 6]
for k = 1 : length(DEL)
A = [A(1:INDX(k)-1), DEL(k), A(INDX(k):end)];
end
A % Print to command window.
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrix Indexing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!