How can I keep two indices preserved in MATLAB ?
Informazioni
Questa domanda è chiusa. Riaprila per modificarla o per rispondere.
Mostra commenti meno recenti
Hi All,
This is a snapshot of the table that I am working on.
I need the indices of the [row] and [column] BOTH columns of the table to be preserved when I move on to the next iteration.
Simply, for B = 0.0891 I should be able to tell that row = 1 and column = 2, once after I move on to the next iteration, but the position of that element in the next iteration migh not be at the first place as in this case.
I hope you got my question.
Thank you.
This is the table that I am discussing about.....

7 Commenti
Walter Roberson
il 13 Nov 2019
I do not understand. But if you need to, you could add another variable to the table that was the original row number inside the table. Then if you end up re-arranging the rows of the table, you would still be able to tell which row an entry was originally.
Gayan Lankeshwara
il 13 Nov 2019
Walter Roberson
il 13 Nov 2019
What column number are you trying to preserve? Are you trying to preserve the value of the variable named 'column' (variable #5)? If so then just keep the column.
Gayan Lankeshwara
il 13 Nov 2019
KSSV
il 13 Nov 2019
To preserve it don't disturb the value ..simple..
Walter Roberson
il 13 Nov 2019
ismember the moved data against the original data and take the second output to get the linear index in the original data.
Gayan Lankeshwara
il 13 Nov 2019
Risposte (0)
Questa domanda è chiusa.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!