필터 지우기
필터 지우기

Matlab problem (RECTANGULAR MICROSTRIP PATCH ANTENNA)

조회 수: 6 (최근 30일)
Ameer Manthor
Ameer Manthor 2021년 6월 12일
답변: Sourabh Joshi 2021년 12월 8일
Hello im facing problem with a project for design RECTANGULAR MICROSTRIP PATCH ANTENNA in Matlab and i get the code from my professor and it's have a lot errors i hope someone can help me
  댓글 수: 1
Walter Roberson
Walter Roberson 2021년 6월 12일
You did not attach the fig file. Without that, it would be useless for us to find pdf to text converters to convert the pdf to matlab code for testing purposes. Going through the trouble of converting images of code into text is a nuisance, so probably no one is going to bother, but even if they did they would not be able to execute without the fig file.

댓글을 달려면 로그인하십시오.

답변 (1개)

Sourabh Joshi
Sourabh Joshi 2021년 12월 8일
Antenna Toolbox can be used to design the Microstrip Patch antenna at any frequency. The below code can be used to design the patch antenna at 2 GHz and sparameters can be calculated using the sparameters function and plotted using the rfplot function.
% define a patchMicrostrip object and design it at 2 GHz.
% Apply analysis techniques on the object like sparameters and pattern
ant1 = patchMicrostrip;
ant1 = design(ant1,2e9);
figure,show(ant1)
spar = sparameters(ant1,linspace(1.8e9,2.2e9,11));
figure,rfplot(spar);
figure,pattern(ant1,2e9);

카테고리

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

제품


릴리스

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by