How to get the most frequent value of vector on Matlab ?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Makrim
el 1 de Abr. de 2014
Editada: Azzi Abdelmalek
el 1 de Abr. de 2014
I have a vector A that contains let say [1,2,2,4]. I am looking for a way to get the most frequent value on A (here 2).
0 comentarios
Respuesta aceptada
Más respuestas (1)
Azzi Abdelmalek
el 1 de Abr. de 2014
Editada: Azzi Abdelmalek
el 1 de Abr. de 2014
A=[1,2,2,4]
b=unique(A);
f=hist(A,b)
[~,idx]=max(f)
out=b(idx)
1 comentario
Joseph Cheng
el 1 de Abr. de 2014
why do this when Matlab already has a function to do this like it does for mean and median?
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!