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
- Follow-Ups:
- Re: Using Defer on Dynamic Expressions?
- From: John Fultz <jfultz@wolfram.com>
- Re: Using Defer on Dynamic Expressions?