EQUNIQUE-ReturnuniqueelementsofanarbitraryclassusingEQOUT=vlt.data.equnique(IN)ReturnstheuniqueelementsofanobjectarrayINasacolumnOUT.UsesEQtotestforequality.ThisfunctionisalittlemoregeneralthanMatlab's UNIQUE in that it can operate on any object that implements an EQ function, not just CELL arrays. It performs no sorting, and has no requirement that elements are ordered or sortable. Example: A=struct('A',5,'B',6);A=[AAA];B=vlt.data.equnique(A);%B==A(1)Seealso:UNIQUE