Defines sym variables in Scilab
Syms(V_1, ...)
a matrix of string representing valid Scilab names
Syms('x')
is equivalent to x=sym('x')
.It is useful to define several sym variables.
Syms(['x' 'y' 'z']) x*x/y+z^2*x-y Syms a b c d expand((a+b+c+d)^2)