How to check the symbolic engine of matlab2018?
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I have intalled maple (maple toolbox as well) in my computer. And I am trying to switch the engine between in order to get better calculation performance.
When I tried to type "symengine" in the command window, it returns "Undefined function or variable 'symengine'. "
Can anyone tell me the correct command to check the symbolic engine Matlab currently using?
Thanks,
2 Kommentare
Cris LaPierre
am 1 Aug. 2021
Do you have the Symbolic Math Toolbox installed? symengine is a function in that toolbox.
Antworten (1)
Walter Roberson
am 1 Aug. 2021
If you are trying to determine whether you are using maple based symbolic toolbox or the MuPad based one then you cannot use symengine by itself and you cannot easily switch between maple and mupad engines.
For a few releases after MuPad was introduced, symengine could be used to switch between the maple based engine and MuPad engine. However that was removed before r2010a (I would have to check exactly which release)
So, your options include:
- use which to determine whether a function exists which is present in maple engine but not MuPad (or the other way around)
- use which('syms') and analyze the directory to see which engine is serving you
- use try/catch to determine which one you have
Now if you want to switch between maple and MuPad engines, you need to adjust the matlab path, as the ability to switch by command was removed.
2 Kommentare
Walter Roberson
am 1 Aug. 2021
I was close, R2010a was the first release that symengine() could not be used to switch engines. https://www.mathworks.com/matlabcentral/answers/276932-how-to-change-symbolic-solver-from-maple-to-matlab#answer_216751
sympath = which('sym');
if isempty(sympath)
%no symbolic toolbox is installed at all
elseif ismember('maple', lower(regexp(sympath, '[/\\]', 'split')))
%maple
else
%mupad
end
Siehe auch
Kategorien
Mehr zu Get Started with MuPAD finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!