i got theta(degrees), phi(degrees), gain(dB). so how to plot radiation pattern in 360 degrees in 3d

7 visualizaciones (últimos 30 días)
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.

Respuestas (1)

praguna manvi
praguna manvi el 3 de Sept. de 2024
Here is an example of plotting radiation pattern in 360 degrees in 3D using patternCustomfunction:
hdata = readmatrix("data.csv");
patternCustom(hdata (:,3), hdata (:,2), hdata (:,1));
For more information refer to this link:

Categorías

Más información sobre Language Fundamentals en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by