MATLAB: How to generate s1p file in decibel and degree format using rfwrite

RF Blockset

How do I generate s1p file in decibel and degree format using rfwrite?

Best Answer

You can do that by specifying the format when calling the function.
>> rtwrite(data, freq, 'file.s1p', 'Format'. DB')
For more information, please refer to this page:
Related Question