Is it possible to easily modify a Manipulate such that the slider automagically skips certain values?
For example, say I am plotting an equation that's perfectly well behaved for all values of x between x=0 and x=1 except for x=0.25 where it blows up and causes Mathematica to emit many error messages. I could, of course, check for x=0.25 in the body of the Manipulate and then do something sensible but it would be nice if I could just say to Manipulate 'Avoid x=0.25.'
Manipulateuses as default control for numeric values is aManipulatorwhich also has theExclusionsoption and is called exactly like aSlider... – Albert Retey Mar 12 '13 at 09:19Manipulate[x, {{x, .5}, 0, 1, Exclusions -> {0.}, Appearance -> "Labeled"}]. Any idea why? Because one cannot exclude values that were specified in the slider's range? – István Zachar Jun 07 '17 at 11:55Manipulate[x, {{x, .5}, 0, 1, 0.01, Exclusions -> {0.}, Appearance -> "Labeled"}]– garej May 11 '18 at 20:38