Unexpected error in a notebook
I have a long notebook which works nicely. And, suddenly, when I call an already defined function I have this error message
unsupported operand parent(s) for -: 'Integer Ring' and '<class 'sage.plot.graphics.graphics'="">'
Could someone help me to understand what happen ? I cannot give the code here it is too hudge because I have tried to do as in Mathematica a self contain notebook.
It says you cannot subtract a graphics object from an integer. Look for subtraction (with
-
) in the code that gives the error, and check that the values of the variables involved are the ones you expect. Probably you defined a variable, sayg
, at some point, and you expect it to have this value, but somewhere in between you probably accidentally redefinedg
to be something else (maybe used it as an index in a loop or something).Thanks I will verify
Hint: in a copy of that notebook, reduce to a minimal example illustrating the problem. Then post the minimal example here.