Sorting into equal sized bins
Mostrar comentarios más antiguos
Hello,
I have ~72000 elements in a matrix and I want to sort those elements into 10 equally sized bins (not equally spaced). Is there a function that will allow me to find what the ranges are of each of the bins? So each bin should have ~7200 elements and I'd like to know what value the first group has to be above, the second group, etc.
Thanks in advance!
Respuesta aceptada
Más respuestas (1)
Azzi Abdelmalek
el 14 de Feb. de 2014
A=rand(72000,1)
B=reshape(A,7200,10)
Categorías
Más información sobre Linear Regression en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!