skrf.network.average

skrf.network.average(list_of_networks)

calculates the average network from a list of Networks.

this is complex average of the s-parameters for a list of Networks

Parameters :

list_of_networks: list :

a list of Network objects

Returns :

ntwk : Network

the resultant averaged Network

Notes

This same function can be accomplished with properties of a NetworkSet class.

Examples

>>> ntwk_list = [rf.Network('myntwk.s1p'), rf.Network('myntwk2.s1p')]
>>> mean_ntwk = rf.average(ntwk_list)

Previous topic

skrf.network.t2y

Next topic

skrf.network.one_port_2_two_port

This Page