-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NotImplementedError: Please use HDF reader for matlab v7.3 files #161
Comments
Might not. Scipy's mat-file reader only reads certain versions of mat files. This shouldn't be too hard to fix with something like h5py, and we should do that. It might take us a little while, though. I'm leaving this open for now, so that we remember to do that. For the time being, does it work for you if you don't save the mat file explicitly as v7.3? What version of Matlab are you working with? |
We are starting to use 2017a, but I believe most of our apps still runs on 2016a. I will find out we can start storing our AFQ output in HDF5 format. |
I've implemented a library that can read the or install via pip import mat73
data_dict = mat73.loadmat('data.mat') |
That is cool! Have you considered contributing this upstream to scipy? |
Mhh, I'll consider it. However, it introduces a dependency on |
this worked for me |
#if matlab save data use ‘-v7.3’,scipy.io.loadmat api load may lead mistake ,thus can use like:
|
It worked for me, thanks |
Hello.
I am trying to run afqbrowser-assemble on my AFQ output (output.mat) and I am seeing following error message.
I am saving the AFQ output like following.
https://github.com/brain-life/app-tractclassification/blob/master/main.m#L66
I am not exactly sure why we are using "-v7.3" option to save it, but will it not work if I have it?
The text was updated successfully, but these errors were encountered: