MathGroup Archive 2013

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

Search the Archive

Using Defer on Dynamic Expressions?

  • To: mathgroup at smc.vnet.net
  • Subject: [mg129730] Using Defer on Dynamic Expressions?
  • From: W Craig Carter <ccarter at MIT.EDU>
  • Date: Sat, 9 Feb 2013 00:42:50 -0500 (EST)
  • Delivered-to: l-mathgroup@mail-archive0.wolfram.com
  • Delivered-to: l-mathgroup@wolfram.com
  • Delivered-to: mathgroup-newout@smc.vnet.net
  • Delivered-to: mathgroup-newsend@smc.vnet.net

Hello Mathgroup,
I am doing a little notebook programming and am stuck on something:

Note that these two commands differ in their behavior:

CellPrint[
 ExpressionCell[
  Defer[
   Table[x, {x, 0, 10, 1}]
   ],
  "Input"]
 ]

CellPrint[
 ExpressionCell[
  Defer[
   Manipulate[x, {x, 0, 10, 1}]
   ],
  "Input"]
 ]

The front end seems to ignore the Defer request when a command would 
have dynamic output.  Is there any way to get the same behavior (i.e., 
that for Table) as for Manipulate?

Thanks, Craig


W Craig Carter
Professor of Materials Science, MIT


  • Prev by Date: Palette problem with Feynman slash notation
  • Next by Date: Re: Mathematica and Lisp
  • Previous by thread: Re: Help with "recession bar" graph
  • Next by thread: Re: Using Defer on Dynamic Expressions?