請教一下大家,怎樣將cst仿真得到的遠場方向圖數(shù)據(jù)導(dǎo)進matlab做數(shù)據(jù)處理
請教一下大家,怎樣將cst仿真得到的遠場方向圖數(shù)據(jù)導(dǎo)進matlab做數(shù)據(jù)處理
來位大神解答下
invoke(farfieldplot, 'Reset');
invoke(farfieldplot, 'Plottype', 'cartesian');
invoke(farfieldplot, 'Vary', 'angle1');
invoke(farfieldplot, 'Phi', phi);
invoke(farfieldplot, 'Step', step);
invoke(farfieldplot, 'SetTheta360', 'True');
invoke(farfieldplot, 'SymmetricRange', 'True');
invoke(farfieldplot, 'StoreSettings');
invoke(farfieldplot, 'SetPlotMode', 'Directivity');%realized gain,Directivity
invoke(farfieldplot, 'Plot');
File_name = ['Gain_', lablename, '.txt'];
%在當前文件夾內(nèi)新建一個txt文檔用來保存方向圖
fid=fopen(File_name,'w+');
fclose(fid);
%獲取方向圖的文件路徑,方便下面保存結(jié)果時用
File_path=which(File_name);
invoke(export, 'Reset');
invoke(export, 'FileName', File_path);
invoke(export, 'Execute');
A=importdata(File_path);
Pattern_SLL(:,2)=A.data(:,3);
Pattern_SLL(:,1)=A.data(:,1);
請教一下,怎樣將CST中的相位面導(dǎo)入到matlab中去
您好,我也遇到了這個問題,您現(xiàn)在解決了嗎?