Scipy.io.loadmat does not work

I have some problems loading mat files into spyder environment. I am updating my version of conda and OS (now I have Windows 10) and my script is no longer working.

This is the script:

import scipy.io as sio
# I do a lot of stuff here
file = "filename.mat"
a = sio.loadmat(file)

I found that there is a problem with the subroutine loadmat, but I do not know what.

I have this system information:

  • OS: Windows 10, 64 bit.
  • Anaconda 2, python 2.7
  • Other related software installed: Visual Studio 2015

It works before updating the system. Previus version was Windows 7, 64 bit

Error message when the load line is running: "Obviously, the kernel worked unexpectedly. Use" Restart the kernel "to continue using this terminal."

UPDATE 1:

, windows, anaconda. scipy.io.loadmat

2:

anaconda. !... - , ?

+4
1

scipy. , :

conda install scipy==0.16.0
+11

Source: https://habr.com/ru/post/1627894/


All Articles