Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have some calculations with an arbitrary function. In the output, Mathematica always shows the function arguments. I would like to tidy the notation a bit, by hidding the arguments in the output. How can I do that? Or even better, is there a way to write the function arguments just once in the code? Remembering it's an arbitrary function.

For example, its something like this:

f[x,y] + (f[x,y])^2 = ...

And I prefer like this:

f + f^2 = ...

Thanks!

share|improve this question

1 Answer

up vote 1 down vote accepted

You mean just for display purposes? May be a simple /. ?

Clear[x, y, f]
expr = f[x, y] + (f[x, y])^2 == 34;
expr /. f[__] -> f

gives

Out[29]= f + f^2 == 34

You can even modify $PrePrint to do this automatically

Clear[x,y,f]
$PrePrint=#/.f[__]->f&;
expr=f[x,y]+(f[x,y])^2==34

Out[6]= f+f^2==34

expr
Out[7]= f+f^2==34

To get it back, do

$PrePrint=.
expr

Out[10]= f[x,y]+f[x,y]^2==34

I am not brave enough to do this myself in actual programming, but it is there to try.

share|improve this answer
How to make a function to do the work, out of the first suggestion? So it replaces every occurrence of any function in my expression? I'm new to Mathematica. Tried here but no success. – Giovanni Nov 24 '12 at 16:07
The problem is how to know a Head repesents your own function so as to make the change? Any expression is Head[ elements ], hence to make the changes, one needs to know on which expression to apply it. Without knowing what is the symbol for the Head, like f in this example, I do not see how it will be possible to make a general rule. May be one can look for unprotected Heads, but I am not sure it can be done in general really. Too messy. Make a new question on this general case and ask it in Mathematica StackExchange. The real Mathematica experts are there. – Nasser Nov 24 '12 at 16:25
Ok, thank you. I'll do that. – Giovanni Nov 24 '12 at 16:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.