Effacer les filtres
Effacer les filtres

How to move(translate) antenna using antenna toolbox

2 vues (au cours des 30 derniers jours)
Jaehoon Jeong
Jaehoon Jeong le 4 Juil 2023
Modifié(e) : Jaehoon Jeong le 4 Juil 2023
Hello,
I'm using antenna toolbox to extract E-fields (near/far-field).
But when I try to make an antenna, I don't know how to arrange the center of the antenna on the origin (since the antenna is automatically constructed using a simple function with frequency parameter)
I know how to tilt the antenna, but how to move according to any cartesian axis?
aut = design(horn, f0);
Anyone knows how to manyally move the antenna?
Thank you.

Réponses (1)

Sarthak
Sarthak le 4 Juil 2023
Hello Jaehoon,
You can try using the translate function which is available in the Antenna Tooolbox. I am attaching the example snippet of how we can translate a dipole antenna using translate function.
% Create a dipole antenna
dipole = dipole('Length', 0.5);
% Define the translation vector
translation = [1, 2, 3]; % [x, y, z] translation values
% Translate the antenna elements
dipole = translate(dipole, translation);
This function is available for most of the antenna elements in the Antenna Toolbox.
Hope this helps!!
  1 commentaire
Jaehoon Jeong
Jaehoon Jeong le 4 Juil 2023
Modifié(e) : Jaehoon Jeong le 4 Juil 2023
Unfortunately, it does not work. I looked up doc of 'translate' and I also tried using two inputs for translation matrix (i.e. translation = [1,2];), but it still does not work. The error says 'The number of input and output values, or type is invalid.' (I translated it cuz it's shown in Korean. I'm sorry.)

Connectez-vous pour commenter.

Catégories

En savoir plus sur Analysis, Benchmarking, and Verification dans Help Center et File Exchange

Produits


Version

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by