0
Manipulate[
 Plot[a x^2 + b x + c, {x, -10, 10}, PlotRange -> {-50, 50}, 
  PlotLabel -> Row[{a x^2 + b x + c = y}]], {{a, .1}, -10, 10, 
  Appearance -> "Open"}, {{b, .1}, -10, 10, 
  Appearance -> "Open"}, {{c, .1}, -10, 10, Appearance -> "Open"}]

Then I am having this after evaluating:

Set::write: Tag Plus in 0.1 +0.1 x+0.1 x^2 is Protected.

What does this mean?

Michael E2
  • 235,386
  • 17
  • 334
  • 747
pelin
  • 11
  • 1

1 Answers1

1

You have assign (=) instead of == in the:

{a x^2 + b x + c = y}

Just change this into and this will be fixed.

{a x^2 + b x + c == y}
m0nhawk
  • 3,867
  • 1
  • 20
  • 35