MathGroup Archive 2009

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: HoldForm in defined function doesn't seem to work

  • To: mathgroup at smc.vnet.net
  • Subject: [mg99245] Re: HoldForm in defined function doesn't seem to work
  • From: mjumbo at gmail.com
  • Date: Thu, 30 Apr 2009 06:32:45 -0400 (EDT)
  • References: <gt9aki$q22$1@smc.vnet.net>

On Apr 29, 9:37 pm, joel.aufg... at gmail.com wrote:
> I'm struggling to understand why this doesn't work:
>
> f[x_] = HoldForm[x];
> HoldForm[123 456 789] (* returns "123 x 456 x 789" *)
> f[123 456 789] (* returns"44253432" *)
>
> I don't understand why the two results are different.   Is there a
> special trick I need to do to be able to define f so that the HoldForm
> works?
>
> I'm using this to help visualize the way a notebook represents typed
> expressions, so I'm trying to do something like this:
>
> BoxTree[expr_] := TreeForm[ToBoxes[HoldForm[expr]][[1]]];
> a b c d e // BoxTree
> 123 456 789 // BoxTree (* want this to show as a RowBox like the
> previous example *)
>
> Any help would be greatly appreciated.  Thanks.

That's the way Mathematica evaluates expressions. To achieve the
desired effect add command:
SetAttributes[f,HoldAll]

Best wishes, Yuri


  • Prev by Date: Re: why is this happening?
  • Next by Date: Re: why is this happening?
  • Previous by thread: Re: HoldForm in defined function doesn't seem to work
  • Next by thread: Re: HoldForm in defined function doesn't seem to work