I supposed to obtain the result S21/H. I already made the code but the result obtain does not same.
조회 수: 2 (최근 30일)
이전 댓글 표시
S21Re = Untitled(1:1001,2);
S21Im = Untitled(1:1001,3);
S21 = S21Re + j*S21Im;
HRe = Hfieldx17(1:1001,2);
HIm = Hfieldx17(1:1001,3);
H = HRe + j*HIm;
f1 = 10e6; %10MHz
f2 = 3e9; %3GHz
f = linspace(f1,f2,1001);
%f = Untitled(1:1001,1);
%S21/H
Pf = S21/H; %probe factor
plot(f,abs(Pf), 'k');
*This is the result I obtain

This is the real result

댓글 수: 0
답변 (1개)
Awais Saeed
2021년 8월 8일
편집: Awais Saeed
2021년 8월 8일
try
Pf = S21./H; %probe factor
instead of
Pf = S21/H; %probe factor
댓글 수: 2
참고 항목
카테고리
Help Center 및 File Exchange에서 Numerical Integration and Differential Equations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!