hey, when using syms y(x) do I define both y and x as symbolic? I thought that I have to write it this way - syms y(x) x

 Respuesta aceptada

Star Strider
Star Strider el 22 de Sept. de 2018

0 votos

Not necessarily.
This works:
syms y(x)
y(x) = x^2;
as will this:
syms y x
y(x) = x^2;
while this will throw an error:
syms y
y(x) = x^2;
I default to defining all variables in a syms declaration, just to be safe (and compulsive).

Más respuestas (0)

Productos

Versión

R2018a

Etiquetas

Preguntada:

el 22 de Sept. de 2018

Respondida:

el 22 de Sept. de 2018

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by