clustering method from txt(notepad) data..pls help me
Mostrar comentarios más antiguos
i just want to know the coding n who to do.if i has data from txt to do the clustering method in matlab.plss help me
3 comentarios
Jan
el 5 de Abr. de 2013
Please exaplin your problem with any details. How could we know, what you are talking about, what you have tried already and how the text file is looking like?
mohd norhafifi zainudin
el 5 de Abr. de 2013
Cedric
el 5 de Abr. de 2013
So you want to read data available in a text file and store them into some array in MATLAB, and then study to what extent these values are clustered.
See if you are able to write code for reading the text file and get the content in a MATLAB variable/array. Look at the documentation for TEXTREAD for example.
Respuesta aceptada
Más respuestas (1)
Image Analyst
el 5 de Abr. de 2013
You might want to look at using hist() or histc() to take the histogram of the values to see if they naturally fall into groups.
[counts, values] = hist(yourData, numberOfBins);
bar(values, counts); % Plot it.
1 comentario
mohd norhafifi zainudin
el 5 de Abr. de 2013
Categorías
Más información sobre Statistics and Machine Learning Toolbox 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!