Keep track of Matrix row indices after deleting some rows
2 views (last 30 days)
Show older comments
Suppose, I have a 10x10 Martix A= magic(10).
Then I delete some rows from it as A([3 5 6],:)=[]. and some columns as A(:,[3 5 6])=[]
Now it's a 7x7 matrix.
I want to keep track of the indices to know which row in the orginal matrix becomes which row in the transformed matrix.
A= magic(10);
A([3 5 6],:)=[];
A(:,[3 5 6])=[];
I want to keep track that previous 4th row is now the 3rd row...previous 7th row is now the 4th row...etc. Any solid way to do that? Please help. Thanks.
0 Comments
Answers (1)
KALYAN ACHARJYA
on 18 Apr 2021
Edited: KALYAN ACHARJYA
on 18 Apr 2021
You can store the A in a temporary variable, and do the modification on temp
temp=A;
Now do the all modification on temp. Result A is original and temp is the modified matrix. Afterwards you can do the comparision between A and temp, like simmilarity
See Also
Categories
Find more on Read, Write, and Modify Image 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!