skrf.networkSet.NetworkSet.write

NetworkSet.write(file=None, *args, **kwargs)

Write the NetworkSet to disk using write()

Parameters :

file : str or file-object

filename or a file-object. If left as None then the filename will be set to Calibration.name, if its not None. If both are None, ValueError is raised.

*args, **kwargs : arguments and keyword arguments

passed through to write()

Notes

If the self.name is not None and file is can left as None and the resultant file will have the .ns extension appended to the filename.

Examples

>>> ns.name = 'my_ns'
>>> ns.write()

Previous topic

skrf.networkSet.NetworkSet.uncertainty_ntwk_triplet

Next topic

plotting (skrf.plotting)

This Page