How to find corresponding indices?
Show older comments
Good Day,
I have a dataset I am working (891 rows,12 columns) with and have already sorted one column with zeros and ones (Logical). I would now like to pull data from 2 other columns (number and text) where the ones are located (neglecting the zeros). How can I write this in matlab?
TIA!
Answers (1)
% some data
data = [0 10]+(1:10).'
% whether to get each row:
rows_to_get = [false; false; true; true; false; false; false; true; true; false]
% final result:
result = data(rows_to_get,:)
Categories
Find more on Shifting and Sorting Matrices 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!