ArashRabbani / DeePore

Deep learning for rapid characterization of porous materials
42 stars 24 forks source link

# save test results as file suitable for post-processing with python #1

Closed rarygit closed 2 years ago

rarygit commented 2 years ago

In script DeePore.py, we have a save test results function for MatLab:

Is it possible to add a feature to DeePore to save test results in a format suitable for post-processing with python?

Thanks

ArashRabbani commented 2 years ago

Hi there, Python is able to read MATLAB files too. using scipy package like this:

import scipy.io as sio sio.loadmat('FileName.mat')

rarygit commented 2 years ago

Ok, thanks for the quick reply! We can close this now.