Unrecognized function or variable 'efficiency'

6 vues (au cours des 30 derniers jours)
Richard
Richard le 6 Juil 2024
Commenté : Richard le 6 Juil 2024
I am getting the following error but can't figure out why.
Unrecognized function or variable 'efficiency'.
I am using a full version of MATLAB 2024a with an academic license and all of the toolboxes installed on April 3.
I regularly use the functions from the Antenna Toolbox so I am confident that it is installed correctly. I've also tried copying the text from the Help Center article to make sure there weren't any typos.
'doc efficiency' and 'help efficiency' in the command window work as expected.
Is the 'efficiency' function still available in 2024a? Is there any other reason why it might not be recognized?

Réponse acceptée

Voss
Voss le 6 Juil 2024
You might get that error if the arguments you give to efficiency() are not correct.
For example, calling it like this works:
ant = patchMicrostrip(Substrate=dielectric("Air"),Conductor=metal("PEC"));
eff = efficiency(ant,1e09)
eff = 1
But calling it with no arguments generates the error you got:
eff = efficiency()
Unrecognized function or variable 'efficiency'.
  4 commentaires
Walter Roberson
Walter Roberson le 6 Juil 2024
The supported objects are
Antenna or array to calculate the efficiency, specified as an antenna or array from the catalog, a pcbStack object, an installedAntenna object, or custom antenna or array created using either of these:
Unfortunately I do not have that toolbox to test to see whether phased.ULA is supported
Richard
Richard le 6 Juil 2024
Thanks, much appreciated

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

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

Produits


Version

R2024a

Community Treasure Hunt

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

Start Hunting!

Translated by