Importing data from HFSS and ploting in matlab

25 ビュー (過去 30 日間)
Mordecai Raji
Mordecai Raji 2017 年 11 月 17 日
コメント済み: mahdi reshadat 2018 年 1 月 18 日
I designed a dipole in HFSS and exported the polar radiation pattern in csv format to matlab. now, i need help on how to plot the data and get the same result as HFSS. I also attached the raw csv format.

採用された回答

Dan Klemfuss
Dan Klemfuss 2017 年 11 月 18 日
Good Evening Mordecai. The following code ingests and plots the data in a figure for each Phi angle. Please let me know if you have any questions.
[num, txt] = xlsread('pat.csv');
theta_polar_deg = num(:,1);
theta_polar_rad = deg2rad(theta_polar_deg);
for i = 1:length(txt-1)
figure('Name',txt{i},'NumberTitle','off','MenuBar','none');
Gain = num(:,i);
polarplot(theta_polar_rad, Gain,'r')
rlim([min(Gain)-5 max(Gain)+5]);
ax = gca;
ax.RTick = [-38 -26 -14 -2];
ax.ThetaDir = 'clockwise';
ax.ThetaZeroLocation = 'top';
plotTitle = sprintf('Radiation Pattern %d',i);
title(plotTitle)
end
  7 件のコメント
Mordecai Raji
Mordecai Raji 2017 年 11 月 24 日
Oh thanks, it works now. Great!
mahdi reshadat
mahdi reshadat 2018 年 1 月 11 日
編集済み: mahdi reshadat 2018 年 1 月 11 日
I have same project so i do your work but i give this error. What can i do?
Error is: Undefined function 'polarplot' for input arguments of type 'double'.
Error in Help (line 10) polarplot(theta_polar_rad, Gain,'r')

サインインしてコメントする。

その他の回答 (1 件)

Mordecai Raji
Mordecai Raji 2018 年 1 月 12 日
編集済み: Mordecai Raji 2018 年 1 月 12 日
Hi Mahdi, I think it's your MATLAB version. Instead use the function 'polar' instead of polarplot. I.e polar(theta_polar_rad, Gain, 'r')
  1 件のコメント
mahdi reshadat
mahdi reshadat 2018 年 1 月 18 日
thank you. I use new version of MATLAB and it work.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeEnvironment and Settings についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by