connect two n-port networks’ s-matricies together.
specifically, connect port k on network A to port l on network B. The resultant network has nports = (A.rank + B.rank-2). This function operates on, and returns s-matricies. The function connect() operates on Network types.
Parameters : | A : numpy.ndarray
k : int
B : numpy.ndarray
l : int
|
---|---|
Returns : | C : numpy.ndarray
|
See also
Notes
internally, this function creates a larger composite network and calls the innerconnect_s() function. see that function for more details about the implementation