For example, for a built-in function in Mathematica, f, originally f[1] gives {1,2,3}, but I want to let Mathematica gives only {1,3}. A simple method for rewritting f is desired. I don't want to define a new function or totally rewrite f or just dealing with original f's outputs. I want to rewite f.
Thanks. :)
$Postseems to be an good way, but it applies to all built-function which is not I want? – FreshApple May 20 '11 at 14:58$Postis applied to every output expression as it is clearly stated in the documentation. It knows nothing on how this expression was generated. – Alexey Popkov May 20 '11 at 16:01f[1]gives{1,2,3}, or do you mean something likef /@ {3, 5, 7}gives{1,2,3}? I ask becauseSingives a single numerical output, not a list. – Mr.Wizard May 20 '11 at 21:26