In the front end of Mathematica version 10, a new feature was implemented which dims output cells that no longer correspond to its input cells. So when you type
1 + 1
(* 2 *)
and go into the input and add another +1
, the 2
is slightly gray to indicate that 1+1+1
is not 2
. SparseArray
seem to be always grey, as if they are never up-to-date
The same is true for InterpolatingFunction
but not for CompiledFunction
.
Any clues why this is?
Comments
Post a Comment