Copy circuit or data object
h2 = copy(h)
example
h2 = copy(h) returns a copy of the circuit, data, or network parameter object h.
h2
h
Note
The syntax h2 = h copies only the object handle and does not create an object.
h2 = h
collapse all
Copy a circuit object to represent the cascaded amplifier.
FirstCkt = rfckt.txline; SecondCkt = rfckt.amplifier; ThirdCkt = copy(FirstCkt);
Create a cascaded circuit object.
CascadedCkt = rfckt.cascade('Ckts', {FirstCkt,SecondCkt,ThirdCkt})
CascadedCkt = rfckt.cascade with properties: Ckts: {1x3 cell} nPort: 2 AnalyzedResult: [] Name: 'Cascaded Network'
circuit object
data object
network parameter object
RF object, specified as a circuit, data, or network parameter object.
RF object handle, returned as a circuit, data, or network parameter object.
analyze
You have a modified version of this example. Do you want to open this example with your edits?