Toolbox and Add-on path not found in path
Show older comments
Using MATLAB 2017b.
I was trying to use this function to determine the position and velocity of planets:
[position,velocity]=planetEphemeris(juliandate(2018,1,1),'Earth','Moon')
and I've already installed the aerospace toolbox, it's located in the Mac applications directory with the aeroDataPackage. (PS. all my MATLAB written scripts directory is located in a specified MATLAB folder in the Documents directory).
When I ran my script using that function, I got this error. I don't understand why since I got it downloaded and is found in the directory. Please help and explain?
Error using planetEphemeris (line 160)
Ephemeris data is not available on the MATLAB path. You might need to download
it using the aeroDataPackage function.
Error in Runs (line 140)
[position,velocity]=planetEphemeris(juliandate(2018,1,1),'Earth','Moon')
Accepted Answer
More Answers (1)
If planetEphemeris is an M-file, you can examine the line around line 160 to find out, where this function looks for the file, which is called "Ephemeris data" in the error message. Does the needed file exist anywhere else? Did you follow the instruction from the message already:
You might need to download it using the aeroDataPackage function.
? You write "I got it downloaded", but it is not clear, if this means the required file or the toolbox.
Categories
Find more on Satellite Mission Analysis in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!