Group Abstract Group Abstract

Message Boards Message Boards

0
|
6.7K Views
|
4 Replies
|
1 Total Like
View groups...
Share
Share this post:
GROUPS:

addressing an Output (or input)

Posted 11 years ago
POSTED BY: Gernot H
4 Replies

The metaphor for In[n] and Out[n] should be thought of as the inputs and outputs sequential in time, not line, linearly from the top of a notebook to the bottom. It is, one way of thinking, a potential confusion in the documentation for how In and Out are often described

?In

In[n] is a global object that is assigned to have a delayed value of the n^th input line.  >>

Although n is a "line number" parameter here, it in reality is a time parameter in "ticks of a clock' where the clock ticks once each time you execute an input.

One could create another tag for cells that is unique to the cell and which behaves the way you wish. It requires uniquely tagging a cell and using that to keep track. There is an option to notebooks that can help: CreateCellID. And the parameter $PreRead may play a part. If I get the time I may put something like this together.

POSTED BY: David Reiss

You may already know this, but you can use the % sign to address the last output. For example,

Sqrt[%]

will always evaluate to the square root of the last output.

POSTED BY: Tim Mayes

You might want to use Dynamic.

In[1]:=     a = 4*4

In[2]:=   Dynamic[Sqrt[a]]

If you then change a, it will automatically change the square root as well. You don't even need to re-evaluate. I think that the whole point of the Out[3] labelling is that it gives a unique identifier to every output. If you want content to change dynamically, when you change values in the notebook, the preferred construct seems to by Dynamic.

Cheers, Marco

POSTED BY: Marco Thiel
Posted 11 years ago

Not 100% what I was looking for, but helpful for sure, thanks!

POSTED BY: Gernot H
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard