Finding Rest of Row

5 Ansichten (letzte 30 Tage)
Anjali Parmar
Anjali Parmar am 19 Feb. 2020
Kommentiert: Anjali Parmar am 19 Feb. 2020
Hello! Matlab newbie here. So I have a bunch of data in rows/columns. If I have a variable assigned to something in a specific row in column 1, how do I find the values in the rest of the row in the rest of the columns (there's like five total)? I appreciate any help!

Akzeptierte Antwort

Gifari Zulkarnaen
Gifari Zulkarnaen am 19 Feb. 2020
Do you mean like vlookup in excel? Try this:
data = randi(1,4,5); % Just an example matrix
first = data(randi(4),1); % Example of desired number in first column
index = data(:,1) == first; % Find in which row is your desired number located
rest = data(index,2:end); % Get the rest of columns of that row
  1 Kommentar
Anjali Parmar
Anjali Parmar am 19 Feb. 2020
Oh I see! Thank you!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Data Import from MATLAB finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by