MATLAB: Finding distinct values in a column of a matrix

distinct valuesunique value in column of a matrix

I have a 81*4 matrix. I want to find the distinct values only in the first column, which can also be seen as the first column of every row.
eg: a= 2 3
4 3
4 5
2 3
ans should be = 2
4
unique() is of no use here, it supports only whole row distinction.

Best Answer

unique( a(:,1) )