question for a beginner

2 次查看(过去 30 天)
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

采纳的回答

Star Strider
Star Strider 2018-9-22
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).

更多回答(0 个)

标签

产品


版本

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by