I have around 700 .mat files saved in my PC (64-bit, Windows 8 OS), and these files contain matlab structures containing matrices, and other information about them like eigenvalues etc. I produced these files by running some matlab codes.
Now, I'm newly learning scikit-learn, and I'd like to import the .mat files onto my Jupyter notebook, and would like to perform machine learning in scikit-learn (not in matlab) on the matrices saved in the above mentioned .mat files.
How can I do this import onto Jupyter?
Also, the matrices above are probably saved in matlab array format. How can I transform them into numpy arrays to make them ready for scikit-learn use?
I'm very new to Jupyter and Python in general, so I'd greatly appreciate a step by step instruction if you could.