why the syms command is not working on my matlab ?
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
DAGGUMALLI
el 16 de Nov. de 2025
Movida: Walter Roberson
el 16 de Nov. de 2025
syms error in my matlab
Respuestas (1)
Steven Lord
el 11 de Sept. de 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 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!