필터 지우기
필터 지우기

how to change rho values to get radiation pattern of antenna ?

조회 수: 4 (최근 30일)
NARESH
NARESH 2016년 4월 9일
답변: RAGHUNATHRAJU DASHARATHA 2022년 9월 19일
i simulated an antenna using cst mws, now i'm trying to plot the radiation pattern in matlab with CST data, data extracted from cst microwave studio was contain angle vs dB values. If I use polar command in matlab
polar(theta,rho)
I could not find the same polar plot as CST. Plz could u provide matlab code for radiation pattern in matlab.
  댓글 수: 1
arond
arond 2019년 1월 26일
Convert degrees to radians:
anglerad=deg2rad(angle);
polarplot(anglerad,db);
rlim([min(db) max(db)]);
polar.PNG

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

답변 (1개)

RAGHUNATHRAJU DASHARATHA
RAGHUNATHRAJU DASHARATHA 2022년 9월 19일
As per my understanding you want to plot Radiation pattern from the data
I would like to demonstrate it using below example ,Here I saved your data in .xlsx file named Book1.
a = xlsread('L:\Book1.xlsx')
b=a(:,1);
c=a(:,2);
polarpattern(b,c);

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by