i got theta(degrees), phi(degrees), gain(dB). so how to plot radiation pattern in 360 degrees in 3d
5 ビュー (過去 30 日間)
古いコメントを表示
i got 3 columns in .csv file, imported it to matlab. theta(degrees), phi(degrees), gain in dB so hot to plot 3d radiation pattern.
0 件のコメント
回答 (1 件)
praguna manvi
2024 年 9 月 3 日
Here is an example of plotting radiation pattern in 360 degrees in 3D using “patternCustom” function:
hdata = readmatrix("data.csv");
patternCustom(hdata (:,3), hdata (:,2), hdata (:,1));
For more information refer to this link:
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!