Hi Michael,
How can I increase SParamData matrix from two port device to three port device in IronPython?
main_line = s.LoadSParamData(r'Uthru_out\DUTs\Fovonal_Input_Output.sdatb')
coupling = s.LoadSParamData(r'Uthru_out\DUTs\Coupling.sdatb')
isolation = s.LoadSParamData(r'Uthru_out\DUTs\Izolacio.sdatb')
m = []
m.append(main_line)
SdataOut = SParamData[UncNumber](m[0].NFreq,3)
SdataOut.PortZr=m[0].PortZr
s.SaveSParamData('Uthru_out\DUTs\DirectionalCopulerFull.sdatb', SdataOut)
The main_line is two port measurement.
I get error message at SaveSParamData row “IndexError: The index pointed outside the bounds of the array.”
Regards
László