Closed ds7711 closed 6 years ago
Hi, if you have enough ram is possible to do something like that. A way to load the file for the get_spikes is making a new reader in the folder _Raw_datareaders . From get_spikes you have to return the index of the spikes and the spikes matrix (see the function get_spikes_single inside that file). Finally give that variables to Do_clustering (in this case you will have to use mainly the function do_clustering_single inside that file).
@ferchaure Thanks for the suggestions. Will try that.
Hi, I am trying to use wave_clus to batch process my data. The ideal workflow is like the following:
get_spikes(data, sr)
to detect spikes.do_clustering(spikes)
to obtain spikes, classes, times.For the 2nd and 3rd step, I would like to directly pass the variables rather than saving a temporary .mat file and then load it.
Do you have any ideas/suggestions about how I could do this?
Saving data & sr as .mat file and then call the GUI seems to be slow and uses a lot of memory.