![polar.PNG](https://www.mathworks.com/matlabcentral/answers/uploaded_files/201625/polar.png)
how to change rho values to get radiation pattern of antenna ?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/160601/image.jpeg)
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 comentario
arond
el 26 de En. de 2019
Convert degrees to radians:
anglerad=deg2rad(angle);
polarplot(anglerad,db);
rlim([min(db) max(db)]);
![polar.PNG](https://www.mathworks.com/matlabcentral/answers/uploaded_files/201625/polar.png)
Respuestas (1)
RAGHUNATHRAJU DASHARATHA
el 19 de Sept. de 2022
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);
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1129085/image.jpeg)
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!