scipy - Python stops working on loadmat -


i'm having trouble using scipy's loadmat. while savemat seems work fine, when try load .mat file, whole python stops working without throwing error. i'm using anaconda2 distro (python 2.7) scipy 0.17.0.

from scipy import io dict_a = {'a':[3, 9, 17, 15, 19]} io.savemat('example.mat', dict_a)  mat = io.loadmat('example.mat') 

this example crashes python on last line. glad ideas.

i encountered issue after updating scipy. downgrading scipy 0.16.0 solved issue.

conda install scipy==0.16.0 

also see post github


Comments

Popular posts from this blog

sublimetext3 - what keyboard shortcut is to comment/uncomment for this script tag in sublime -

java - No use of nillable="0" in SOAP Webservice -

ubuntu - Laravel 5.2 quickstart guide gives Not Found Error -