Create symbolic variables with assumptions (syms)
Show older comments
When I try to create a symbolic variable setting an assumption I get an error.
syms x real
Error using strjoin (line 19)
Expected input to be one of these types:
char
Instead its type was string.
Error in setToMuPADSet (line 8)
mset = strjoin(S, " intersect ");
Error in sym/assume (line 586)
mset = setToMuPADSet(S);
Error in syms (line 261)
assume(xsym, control); % overrides former assumptions of xsym
No issues if no assumption is set.
Answers (1)
Mohammad Alhashash
on 4 Jun 2019
Then try this one
syms x
assume(x,'real')
1 Comment
Rafael Gallego
on 14 Jun 2019
Categories
Find more on Symbolic Math Toolbox 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!