why the syms command is not working on my matlab ?
14 views (last 30 days)
Show older comments
Error using sym Error: File: sym.m Line: 176 Column: 35 Unexpected MATLAB expression.
Error in syms (line 77) toDefine = sym(zeros(1, 0));
Error in metnum1a (line 1) syms x
my syms used to work fine, but recently this error always come out and i don't know how to fix it. any suggestion ? Thanks a lot :)
2 Comments
DAGGUMALLI
on 16 Nov 2025 at 5:52
Moved: Walter Roberson
on 16 Nov 2025 at 6:24
syms error in my matlab
Answers (1)
Steven Lord
on 11 Sep 2017
Make sure you are using the sym function from Symbolic Math Toolbox, not another function named sym that you wrote or downloaded from somewhere else.
which -all sym
After that, if you are using the function from the toolbox check that you haven't accidentally modified the sym function from the toolbox. Edit it and see if there is a red square in the upper-right corner of the Editor box. If there is look for a red line in the gutter below that square and see if there is one on or near line 176. If so correct the problem it describes.
0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!