Undefined function or variable 'assume', is it possible that my 'assume' function has been removed?
Show older comments
I've encountered with error Undefined function or variable 'assume' although i have used it many times before,
i used these commands below:
restoredefaultpath
rehash toolboxcache
but nothing changed, is it possible that my 'assume' function has been removed and if yes, what should i do?
Accepted Answer
More Answers (1)
Ameer Hamza
on 6 May 2018
Edited: Ameer Hamza
on 6 May 2018
You cannot call assume() without input arguments. Use it like this
syms x
assume(x>0);
2 Comments
saeed shekari
on 7 May 2018
Edited: Walter Roberson
on 7 May 2018
Ameer Hamza
on 7 May 2018
Edited: Ameer Hamza
on 7 May 2018
Can you show the output of
which assume
at command window
Categories
Find more on Code Performance 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!