Finding Rest of Row

6 ビュー (過去 30 日間)
Anjali Parmar
Anjali Parmar 2020 年 2 月 19 日
コメント済み: Anjali Parmar 2020 年 2 月 19 日
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!

採用された回答

Gifari Zulkarnaen
Gifari Zulkarnaen 2020 年 2 月 19 日
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 件のコメント
Anjali Parmar
Anjali Parmar 2020 年 2 月 19 日
Oh I see! Thank you!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Import from MATLAB についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by