필터 지우기
필터 지우기

Plot of S11 in Antenna Toolbox

조회 수: 29 (최근 30일)
Anant
Anant 2023년 6월 21일
댓글: Anant 2023년 6월 21일
How To Find S11 Plot in Antenna Toolbox?

채택된 답변

MANIK
MANIK 2023년 6월 21일
편집: MANIK 2023년 6월 21일
As per my knowledge, you are trying to plot S11 of an antenna.
To find out the S11 of an antenna, you can use sparameters function from MATLAB. And, to plot it you can use rfplot function.
Here's a sample code which can give you a better understanding about the two functions.
p=patchMicrostrip;
d=design(p,4e9); %to design a patch micrsotrip antenna at 4GHz
sobj=sparameters(d,linspace(3e9,5e9,51)); %to find out the S11 of the antenna d within a range of 3GHz to 5GHz
rfplot(sobj) %to plot the S11 parameters

추가 답변 (1개)

Angelo Yeo
Angelo Yeo 2023년 6월 21일
hs = sparameters('default.s2p');
rfplot(hs,1,1)

카테고리

Help CenterFile Exchange에서 Analysis, Benchmarking, and Verification에 대해 자세히 알아보기

태그

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by