comparing two columns of a table in MATLAB

46 views (last 30 days)
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?

Accepted Answer

Geoff Hayes
Geoff Hayes on 27 Mar 2020
Edited: Geoff Hayes on 27 Mar 2020
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?

More Answers (0)

Community Treasure Hunt

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

Start Hunting!