Finding the value according to row number

1 view (last 30 days)
I have an array which has 3 columns and a lot of rows(dr). In the first column, it has the row number (column 2)that of the data that I want to extract from another data set (data_crsp).
For example, dr(1:3,1), is [1 3 5], which means I want to draw the value of the second column and the first, third and fifth row of data. And put it in to the second column of the array.
Thanks guys!

Accepted Answer

Matt J
Matt J on 30 Jul 2022
data_crsp(dr(:,1),2)

More Answers (0)

Categories

Find more on Data Types 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!