Li Alex Zhang

Results 28 comments of Li Alex Zhang

I also found this feature would be much helpful in our work. the `update!` indicates the contents of `df1` will be refreshed by the corresponding contents of `df2`, which match...

I could compile in R2020b with visual studio 2019, you could also check if a c++ compiler is available in MATLAB: `mex -setup c++`

yes, I just installed recommended CUDA version 10.2 for MATLAB R2020b

we have the same problems for sorting large files. we first tried the `ops.NT = 64*1024+ ops.ntbuff;` on a 700GB file, and it failed with `out of memory` on a...

the out of memory error showed up at the last of pre clustering batch, here I am showing the successful sort message just for illustration. `time 4760.14, pre clustered 9001...

we are currently doing a kilosort on a ~400GB concantated file, the first out of memory error is at the last of pre clustering, I could see the system RAM...

we are using Phase3A on a ~6hr long data

i have these scattered in several packages, do you suggest create a new small pacakge only for them, or i could move them all into one packages(the [ColorLab](https://github.com/Experica/ColorLab.jl))?

I see your point. what about the scheme data, right now I save them in a JLD2 file, and loaded in package __init__(), but I remember some of the concreate...

writing text file works well, but writing *.jld or *.mat still show errors. ``` using HDF5 h5open("/share folder mount path/mydata.h5", "w") do file write(file, "A", [1,2,3]) end ``` pure hdf5...