MATLAB: Is RF toolbox able to read touchstone v2 (.ts) files

MATLABRF ToolboxsnptouchstoneTS

I want to know what touchstone formats Matlab and RF toolbox can read. Touchstone v1 (.s2p, .s4p, .s8p, …?) Touchstone v2 (.ts) ?
Thanks ! Damien

Best Answer

RF Toolbox can read Touchstone v1, e.g.
>> S = sparameters('default.s4p')
If the file doesn't end in .sNp, the sparameters function throws a warning but it still works, e.g.
>> S = sparameters('passive.ts')
Mark
Related Question