How to use command "sparameters"?

7 ビュー (過去 30 日間)
Marco Wyss
Marco Wyss 2018 年 3 月 22 日
The idea:
1. Convert with the command rlgc2s the S-Parameters of a rlgc-transmission line. This seems to work: I get a 2x2 Matrix with the 4 S-Parameters (s11, s21, s12, s22).
2. Generate a S-Parameters-Object "sobj" with the command sparameters().
This doesn't work. Error: Not enough input arguments.
How can I generate a sobj with my 4 S-Parameters?
The matlab-help-side doesn't help me, maybe you can :-). Thank you very much!

回答 (1 件)

Sangeetha Balasubramaniyam
Sangeetha Balasubramaniyam 2023 年 6 月 19 日
編集済み: Sangeetha Balasubramaniyam 2023 年 6 月 19 日
Hi Marco Wyss,
As per my understanding to your question, you have the complex s-parmeters data and you are looking to generate the sparameter object for the same. yes it is possible.
You can use sparameters() by passing sparams values as the first input argument and frequency as a second positional input argument, they are the required inputs to sparameter function. Please look at the example code below for more understanding.
length = 1e-3;
freq = 1e9;
z0 = 50;
R = 50;
L = 1e-9;
G = .01;
C = 1e-12;
s_params = rlgc2s(R,L,G,C,length,freq,z0);
% Get the sparams object
sobj = sparameters(s_params,freq)
sobj = sparameters(s_params,freq,z0)
You can refer to the following documentation to know more about sparameters().
Thanks,

カテゴリ

Help Center および File ExchangeData Import and Network Parameters についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by