How to use command "sparameters"?
7 ビュー (過去 30 日間)
古いコメントを表示
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!
0 件のコメント
回答 (1 件)
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,
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Data Import and Network Parameters についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!