solve 'Real', true doesnt work
Show older comments
Dear Matlab experts, recently after i reinstall the MATLAB the function "solve" with the turned on 'Real',true gives me a following error:
>> syms x
>> solve(x^5 == 3125, x, 'Real', true)
??? Error using ==> char
Conversion to char from logical is not possible.
Error in ==> solve>getEqns at 189
vc = char(v);
Error in ==> solve at 67
[eqns,vars] = getEqns(varargin{:});
I have no Idea why,
I would be very grateful for any suggestion.
3 Comments
Walter Roberson
on 23 Jan 2014
Which MATLAB version are you using? Did you happen to install the Maple symbolic computing package (Maplesoft) ?
As an experiment, try
solve(x^5 == 3125, x, 'Real', 'true')
Dk
on 24 Jan 2014
Walter Roberson
on 24 Jan 2014
Dk commented
Thank you for your answer! but How to check? and what to do if it's not correctly installed?
Accepted Answer
More Answers (0)
Categories
Find more on Startup and Shutdown 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!