フィルターのクリア

comparing two columns of a table in MATLAB

33 ビュー (過去 30 日間)
Annick
Annick 2020 年 3 月 27 日
コメント済み: Annick 2020 年 3 月 27 日
Hello!
I want to compare the second column with the 3rd column to find out if there is any row having the same values in both columns.
Let's say, for example, 1st ,3rd and 4th rows have the same values in both the two columns. I would like to add another column to the table which shows me if the rows are compared with eachother.
Currently I have wrote this loop, but it writes 0 eventhough the columns are the same
i=1:height(Table1);
if(Table1.Interval1 == Table1.ActivityCode1)
Comparison(i)= 1;
else
Comparison(i)= 0;
end
Comparison = (Comparison)';
Could you please help me?

採用された回答

Geoff Hayes
Geoff Hayes 2020 年 3 月 27 日
編集済み: Geoff Hayes 2020 年 3 月 27 日
Annick - how about you remove the loop and just do
Comparison = Table1.Interval1 == Table1.ActivityCode1;
Wouldn't Comparison be an array of ones and zeros where a one indicates that the two elements (in whatever row) are equal, and a zero indicating that the two elements aren't zero?
  1 件のコメント
Annick
Annick 2020 年 3 月 27 日
Thank you so much for your quick answer :)

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by