shadonar
shadonar

Reputation: 1194

Matlab Save() & Load() methods to python equivalent

I'm new to Python and I'm needing to convert some Matlab code I have to Python. Here's the code I have:

    save(myFile, 'list','config');
else
    load(myfile, 'list');
end

I've been looking within Python and I can't seem to find an equivalent method for this. Any help would be greatly appreciated.

Thanks!

Upvotes: 0

Views: 3030

Answers (1)

Bitwise
Bitwise

Reputation: 7805

Checkout the numpy IO routines here, they can handle various formats.

Upvotes: 1

Related Questions