|
"Shanmugam Kannappan" <shanmugambe@gmail.com> wrote in message <h442sh$j9d$1@fred.mathworks.com>...
> siti <siti1184@gmail.com> wrote in message <80f61a81-7b61-490a-a049-acb2fde1389a@p10g2000prm.googlegroups.com>...
> > hi, all
> >
> > i got a problem to store different data size.
> > i have 8736 data. then, i have clustered the data into 9 cluster.
> > cluster 1 contains 493 data.
> > cluster 2 contains 1374 data.
> > cluster 3 contains 1616 data.
> > until cluster 9 = 52 data.
> > so, how should i store the data so that i can call it when i want to
> > use it next time?
> >
> > thanks..
> Hi,
>
> Store the data's in a cell.
> help cell
Other ways...
Store the data all in one array, and then use a
separate vector that denotes which cluster a point
falls in.
Or, store all the data in one array, and then store
lists of indexes into that array as cells in a cell
array.
John
|