Created
October 9, 2017 18:51
-
-
Save manvillej/b699f57285bec94777bdfe60cdef930b to your computer and use it in GitHub Desktop.
load data and log keys from .mat file using Scipy.io
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import scipy.io as io | |
mat = io.loadmat('./data/ex7data1.mat') | |
print(mat.keys()) | |
# X = mat['X'] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment