skrf.network.stitch

skrf.network.stitch(ntwkA, ntwkB, **kwargs)

Stitches ntwkA and ntwkB together.

Concatenates two networks’ data. Given two networks that cover different frequency bands this can be used to combine their data into a single network.

Parameters :

ntwkA, ntwkB : Network objects

Networks to stitch together

**kwargs : keyword args

passed to Network constructor, for output network

Returns :

ntwkC : Network

result of stitching the networks ntwkA and ntwkB together

Examples

>>> from skrf.data import wr2p2_line, wr1p5_line
>>> rf.stitch(wr2p2_line, wr1p5_line)
2-Port Network: 'wr2p2,line',  330-750 GHz, 402 pts, z0=[ 50.+0.j  50.+0.j]

Previous topic

skrf.network.Network.interpolate_from_f

Next topic

skrf.network.Network.add_noise_polar

This Page