Write the Network to disk using the pickle module.
The resultant file can be read either by using the Networks constructor, __init__() , the read method read(), or the general read function skrf.io.general.read()
Parameters : | file : str or file-object
*args, **kwargs : :
|
---|
See also
Notes
If the self.name is not None and file is can left as None and the resultant file will have the .ntwk extension appended to the filename.
Examples
>>> n = rf.N(f=[1,2,3],s=[1,1,1],z0=50, name = 'open')
>>> n.write()
>>> n2 = rf.read('open.ntwk')