Almanac function not work
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Dear Sir or Madam, I am a student, and I am preparing for tomorrow's colloquium (partial exam for those who do not have the Bologna regime). I need to save a script for calculation, and it is based on the almanac function, which suddenly does not work! How can you help me, what should I use in exchange for alamance
Unrecognized function or variable 'almanac'.
Error in ReferetnaPovrs (line 15) this.ref_pov=almanac("earth","bessel","meter");
0 commentaires
Réponses (2)
Kunal Kandhari
le 22 Mai 2024
Hi,
The error message "Unrecognized function or variable 'almanac'" typically occurs when MATLAB cannot find the specified function or variable. In this case, 'almanac' is a function that belongs to the Mapping Toolbox. To use this function, you need to ensure that the Mapping Toolbox is installed on your system.
You can verify whether the Mapping Toolbox is installed by executing the 'ver' command in your MATLAB command window. This command will display a list of installed toolboxes along with their versions.
If the Mapping Toolbox is not listed, you will need to install it. You can do this through the MATLAB Add-Ons menu.
Once the Mapping Toolbox is installed, you should be able to use the 'almanac' function without encountering the "Unrecognized function or variable" error.
0 commentaires
Star Strider
le 22 Mai 2024
It works here —
format longG
ref_pov=almanac("earth","bessel","meter")
Since it worked previously, you may have a path problem.
Run these from a script or your Command Window:
restoredefaultpath
rehash toolboxcache
Then run your code again.
.
0 commentaires
Voir également
Catégories
En savoir plus sur Introduction to Installation and Licensing dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!