Symbolic Math Toolbox is installed but does not work
42 views (last 30 days)
Show older comments
I have been trying to use the 'syms' command for a simple task and the following error arises:
'syms requires Symbolic Math Toolbox'
This happens even though I have the toolbox installed, having followed the settings and path of the default MATLAB installer. The error dissapears whenever I try to install the toolbox again, only for the system to find out that, indeed, it's already installed. But it reappears whenever I close the program and open it again. This has happened in three separate instances and I can't make sense of it.
Why could this be happening? Is it some issue with shared libraries or program files?
3 Comments
Walter Roberson
on 9 Nov 2024 at 18:19
I would suggest using pathtool to explore whether symbolic/symbolic and symbolic/graphics and symbolic/tasks are listed in the directories.
I would suggest testing with
restoredefaultpath; rehash toolboxcache
followed by
savepath
I am speculating that maybe the internal savepath are failing, that perhaps you do not have write access to the path file.
Answers (1)
Shuba Nandini
on 11 Nov 2024 at 4:56
Hello Simon,
I understand you are encountering an error while using “syms” function. The error ‘syms requires Symbolic Math Toolbox' usually occurs when the license checkout fails.
To resolve the issue, please follow the below troubleshooting steps:
- Make sure that the Symbolic Math Toolbox is properly installed and licensed. You can verify by running the following command in the MATLAB Command Window:
>>ver -output
This command should list the Symbolic Math Toolbox.
- Verify that your license for the toolbox is active with the following command:
>> license('test', 'Symbolic_Toolbox')
If this command returns 0, there could be an issue with your license.
- Try to reinstall the MATLAB and see if the issue persists.
- Try running the following command in the MATLAB Command Window to diagonize the issue:
>> [status, errmsg] = license('checkout', 'Symbolic Math Toolbox ')
If the error message displays ‘License Manager Error -5’, please refer to the following MATLAB Answers link to know how to resolve license checkout issue:
I hope the above provided workarounds will resolve the issue!
0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!