Finding distinct values in a column of a matrix
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
divya r
el 29 de Jun. de 2012
Comentada: Abdulaziz Abutunis
el 18 de Ag. de 2021
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.
0 comentarios
Respuesta aceptada
Walter Roberson
el 29 de Jun. de 2012
unique( a(:,1) )
1 comentario
Abdulaziz Abutunis
el 18 de Ag. de 2021
Hi Walter,
I hope you are well.
Can we maintain full arrays corresponding to these unique vlaues
Thanks
Aziz
Más respuestas (0)
Ver también
Categorías
Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!