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!
You mean just for display purposes? May be a simple
/.?gives
You can even modify
$PrePrintto do this automaticallyTo get it back, do
I am not brave enough to do this myself in actual programming, but it is there to try.