skrf.network.Network.copy_from

Network.copy_from(other)

Copies the contents of another Network into self

Uses copy, so that the data is passed-by-value, not reference

Parameters :

other : Network

the network to copy the contents of

Examples

>>> a = rf.N()
>>> b = rf.N('my_file.s2p')
>>> a.copy_from (b)

Previous topic

skrf.network.Network.copy

Next topic

skrf.network.Network.flip

This Page