pyMMF.IndexProfile.save#

IndexProfile.save(filename)[source]#

Save the index profile to a file.

Parameters:
filenamestr

The name of the file where to save the index profile.

Returns:
None
Parameters:

filename (str)

Return type:

None

Examples

import pyMMF
npoints = 256
areaSize = 20
profile = pyMMF.IndexProfile(npoints=npoints, areaSize=areaSize)
...
profile.save("index_profile.pkl")