Strange behavior of Out[] Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?How do I extract the contents of a selected cell as plain text?How to make a parallel auto-generated .m package from Initialization cells?Making flash cards with MathematicaDifference between double quotesHow is CellContext->CellGroup supposed to work?Automatic shading of all InitializationCell->True cells in older versions“Find currently evaluating cell” does not seem to work correctlyExporting notebooks inserts unwanted $CellContext. Workaround?Stop notebook from auto-scrolling upon printingDocked Cell Slider that controls magnification of Output Cells only
IC on Digikey is 5x more expensive than board containing same IC on Alibaba: How?
Is the Mordenkainen's Sword spell underpowered?
How does TikZ render an arc?
What does Sonny Burch mean by, "S.H.I.E.L.D. and HYDRA don't even exist anymore"?
Dinosaur Word Search, Letter Solve, and Unscramble
Fit odd number of triplets in a measure?
Any stored/leased 737s that could substitute for grounded MAXs?
How do you cope with tons of web fonts when copying and pasting from web pages?
How to get a flat-head nail out of a piece of wood?
Why are two-digit numbers in Jonathan Swift's "Gulliver's Travels" (1726) written in "German style"?
What should one know about term logic before studying propositional and predicate logic?
Searching extreme points of polyhedron
How can I list files in reverse time order by a command and pass them as arguments to another command?
Is it OK if I do not take the receipt in Germany?
Short story about astronauts fertilizing soil with their own bodies
Is there a spell that can create a permanent fire?
By what mechanism was the 2017 UK General Election called?
Why did Bronn offer to be Tyrion Lannister's champion in trial by combat?
Plotting a Maclaurin series
Marquee sign letters
How to name indistinguishable henchmen in a screenplay?
Pointing to problems without suggesting solutions
Is honorific speech ever used in the first person?
Why complex landing gears are used instead of simple, reliable and light weight muscle wire or shape memory alloys?
Strange behavior of Out[]
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)
Announcing the arrival of Valued Associate #679: Cesar Manara
Unicorn Meta Zoo #1: Why another podcast?How do I extract the contents of a selected cell as plain text?How to make a parallel auto-generated .m package from Initialization cells?Making flash cards with MathematicaDifference between double quotesHow is CellContext->CellGroup supposed to work?Automatic shading of all InitializationCell->True cells in older versions“Find currently evaluating cell” does not seem to work correctlyExporting notebooks inserts unwanted $CellContext. Workaround?Stop notebook from auto-scrolling upon printingDocked Cell Slider that controls magnification of Output Cells only
$begingroup$
Let's create two notebooks external.nb and primary.nb. Then call the external.nb notebook from the primary.nb and investigate values of Out[ ]. The context of the external notebook is not important, however for the demonstration of the strange behavior it should contain number of cells. My external.nb notebook contains 4 cells:
a=1;
b=1
c=1
d
The primary notebook contains the single cell which calls the external notebook from the primary. If we put both notebooks in the same directory, the cell is
NotebookEvaluate @ FileNameJoin[
NotebookDirectory[EvaluationNotebook[]], "external.nb"
]
Open the primary.nb and evaluate the cell which calls the evaluation of the external.nb.
The output yields
Out[1] = d
So it returns output of the last cell of the called notebook.
Now refer to input %4
of primary.nb. I would expect an empty output, since at the moment there is no %4
out in the primary notebook. However the result is the same d
.
Asking
?? Out[]
we see the primary.nb knows all Out[]
values of the external.nb notebook. Bug or feature?
front-end kernel
$endgroup$
add a comment |
$begingroup$
Let's create two notebooks external.nb and primary.nb. Then call the external.nb notebook from the primary.nb and investigate values of Out[ ]. The context of the external notebook is not important, however for the demonstration of the strange behavior it should contain number of cells. My external.nb notebook contains 4 cells:
a=1;
b=1
c=1
d
The primary notebook contains the single cell which calls the external notebook from the primary. If we put both notebooks in the same directory, the cell is
NotebookEvaluate @ FileNameJoin[
NotebookDirectory[EvaluationNotebook[]], "external.nb"
]
Open the primary.nb and evaluate the cell which calls the evaluation of the external.nb.
The output yields
Out[1] = d
So it returns output of the last cell of the called notebook.
Now refer to input %4
of primary.nb. I would expect an empty output, since at the moment there is no %4
out in the primary notebook. However the result is the same d
.
Asking
?? Out[]
we see the primary.nb knows all Out[]
values of the external.nb notebook. Bug or feature?
front-end kernel
$endgroup$
$begingroup$
The kernel state (including In/Out values) is not local to notebooks. This is expected.
$endgroup$
– Szabolcs
Mar 19 at 12:05
$begingroup$
That is clear, however why then not to continue the enumeration from the last Out[ ] value the kernel knows in the new notebook? I find this confusing.
$endgroup$
– user18792
Mar 19 at 12:17
$begingroup$
Right, now I see what you mean.primary.nb
keeps counting up from 1, yet higher input line values are already set inOut
thanks toexternal.nb
. It is indeed strange.
$endgroup$
– Szabolcs
Mar 19 at 12:22
add a comment |
$begingroup$
Let's create two notebooks external.nb and primary.nb. Then call the external.nb notebook from the primary.nb and investigate values of Out[ ]. The context of the external notebook is not important, however for the demonstration of the strange behavior it should contain number of cells. My external.nb notebook contains 4 cells:
a=1;
b=1
c=1
d
The primary notebook contains the single cell which calls the external notebook from the primary. If we put both notebooks in the same directory, the cell is
NotebookEvaluate @ FileNameJoin[
NotebookDirectory[EvaluationNotebook[]], "external.nb"
]
Open the primary.nb and evaluate the cell which calls the evaluation of the external.nb.
The output yields
Out[1] = d
So it returns output of the last cell of the called notebook.
Now refer to input %4
of primary.nb. I would expect an empty output, since at the moment there is no %4
out in the primary notebook. However the result is the same d
.
Asking
?? Out[]
we see the primary.nb knows all Out[]
values of the external.nb notebook. Bug or feature?
front-end kernel
$endgroup$
Let's create two notebooks external.nb and primary.nb. Then call the external.nb notebook from the primary.nb and investigate values of Out[ ]. The context of the external notebook is not important, however for the demonstration of the strange behavior it should contain number of cells. My external.nb notebook contains 4 cells:
a=1;
b=1
c=1
d
The primary notebook contains the single cell which calls the external notebook from the primary. If we put both notebooks in the same directory, the cell is
NotebookEvaluate @ FileNameJoin[
NotebookDirectory[EvaluationNotebook[]], "external.nb"
]
Open the primary.nb and evaluate the cell which calls the evaluation of the external.nb.
The output yields
Out[1] = d
So it returns output of the last cell of the called notebook.
Now refer to input %4
of primary.nb. I would expect an empty output, since at the moment there is no %4
out in the primary notebook. However the result is the same d
.
Asking
?? Out[]
we see the primary.nb knows all Out[]
values of the external.nb notebook. Bug or feature?
front-end kernel
front-end kernel
edited Mar 19 at 11:27
Kuba♦
107k12211536
107k12211536
asked Mar 19 at 11:22
user18792user18792
1,785915
1,785915
$begingroup$
The kernel state (including In/Out values) is not local to notebooks. This is expected.
$endgroup$
– Szabolcs
Mar 19 at 12:05
$begingroup$
That is clear, however why then not to continue the enumeration from the last Out[ ] value the kernel knows in the new notebook? I find this confusing.
$endgroup$
– user18792
Mar 19 at 12:17
$begingroup$
Right, now I see what you mean.primary.nb
keeps counting up from 1, yet higher input line values are already set inOut
thanks toexternal.nb
. It is indeed strange.
$endgroup$
– Szabolcs
Mar 19 at 12:22
add a comment |
$begingroup$
The kernel state (including In/Out values) is not local to notebooks. This is expected.
$endgroup$
– Szabolcs
Mar 19 at 12:05
$begingroup$
That is clear, however why then not to continue the enumeration from the last Out[ ] value the kernel knows in the new notebook? I find this confusing.
$endgroup$
– user18792
Mar 19 at 12:17
$begingroup$
Right, now I see what you mean.primary.nb
keeps counting up from 1, yet higher input line values are already set inOut
thanks toexternal.nb
. It is indeed strange.
$endgroup$
– Szabolcs
Mar 19 at 12:22
$begingroup$
The kernel state (including In/Out values) is not local to notebooks. This is expected.
$endgroup$
– Szabolcs
Mar 19 at 12:05
$begingroup$
The kernel state (including In/Out values) is not local to notebooks. This is expected.
$endgroup$
– Szabolcs
Mar 19 at 12:05
$begingroup$
That is clear, however why then not to continue the enumeration from the last Out[ ] value the kernel knows in the new notebook? I find this confusing.
$endgroup$
– user18792
Mar 19 at 12:17
$begingroup$
That is clear, however why then not to continue the enumeration from the last Out[ ] value the kernel knows in the new notebook? I find this confusing.
$endgroup$
– user18792
Mar 19 at 12:17
$begingroup$
Right, now I see what you mean.
primary.nb
keeps counting up from 1, yet higher input line values are already set in Out
thanks to external.nb
. It is indeed strange.$endgroup$
– Szabolcs
Mar 19 at 12:22
$begingroup$
Right, now I see what you mean.
primary.nb
keeps counting up from 1, yet higher input line values are already set in Out
thanks to external.nb
. It is indeed strange.$endgroup$
– Szabolcs
Mar 19 at 12:22
add a comment |
1 Answer
1
active
oldest
votes
$begingroup$
I am guessing that this has to do with the following note in the NotebookEvaluate
documentation:
The cells of the notebook are evaluated in a dialog subsession.
Here is an example session demonstrating similar behaviour:
See Dialog
if you are not familiar with it.
Within the dialog, $Line
keeps getting incremented as usual, and Out
values are set. But once the dialog finishes, $Line
is reset to its original value.
This is documented:
Dialog automatically localizes the values of
$Line
,$MessageList
, and$Epilog
.
Side note: A dialog is something you would normally encounter not when explicitly entering it, but when interrupting evaluation or when debugging (say, you set the debugger to break on a message/assert). Try e.g. Do[Pause[1], i, 30]
, then interrupt using Alt-,
(Option-Command-.
on Mac). Now you can evaluate i
to check its value, or examine the kernel state in other ways. Exit the dialog using Return[]
. It is natural that one would not want these evaluations to influence $Line
once the dialog has finished.
$endgroup$
$begingroup$
Since the behavior is documented I conclude this is the intended design feature. I use NotebookEvaluate for package development, because it is much more convenient way to add new definitions and navigate in the many cell notebook than in plain .m file. I think I will try to add Clear[Out] as the last cell in the external.nb.
$endgroup$
– user18792
Mar 20 at 7:29
$begingroup$
@user18792 You can edit an.m
file as if it were a notebook. You can add section cells and text cells. You can close and open section cells. Try it.
$endgroup$
– Szabolcs
Mar 20 at 8:47
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "387"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f193547%2fstrange-behavior-of-out%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
I am guessing that this has to do with the following note in the NotebookEvaluate
documentation:
The cells of the notebook are evaluated in a dialog subsession.
Here is an example session demonstrating similar behaviour:
See Dialog
if you are not familiar with it.
Within the dialog, $Line
keeps getting incremented as usual, and Out
values are set. But once the dialog finishes, $Line
is reset to its original value.
This is documented:
Dialog automatically localizes the values of
$Line
,$MessageList
, and$Epilog
.
Side note: A dialog is something you would normally encounter not when explicitly entering it, but when interrupting evaluation or when debugging (say, you set the debugger to break on a message/assert). Try e.g. Do[Pause[1], i, 30]
, then interrupt using Alt-,
(Option-Command-.
on Mac). Now you can evaluate i
to check its value, or examine the kernel state in other ways. Exit the dialog using Return[]
. It is natural that one would not want these evaluations to influence $Line
once the dialog has finished.
$endgroup$
$begingroup$
Since the behavior is documented I conclude this is the intended design feature. I use NotebookEvaluate for package development, because it is much more convenient way to add new definitions and navigate in the many cell notebook than in plain .m file. I think I will try to add Clear[Out] as the last cell in the external.nb.
$endgroup$
– user18792
Mar 20 at 7:29
$begingroup$
@user18792 You can edit an.m
file as if it were a notebook. You can add section cells and text cells. You can close and open section cells. Try it.
$endgroup$
– Szabolcs
Mar 20 at 8:47
add a comment |
$begingroup$
I am guessing that this has to do with the following note in the NotebookEvaluate
documentation:
The cells of the notebook are evaluated in a dialog subsession.
Here is an example session demonstrating similar behaviour:
See Dialog
if you are not familiar with it.
Within the dialog, $Line
keeps getting incremented as usual, and Out
values are set. But once the dialog finishes, $Line
is reset to its original value.
This is documented:
Dialog automatically localizes the values of
$Line
,$MessageList
, and$Epilog
.
Side note: A dialog is something you would normally encounter not when explicitly entering it, but when interrupting evaluation or when debugging (say, you set the debugger to break on a message/assert). Try e.g. Do[Pause[1], i, 30]
, then interrupt using Alt-,
(Option-Command-.
on Mac). Now you can evaluate i
to check its value, or examine the kernel state in other ways. Exit the dialog using Return[]
. It is natural that one would not want these evaluations to influence $Line
once the dialog has finished.
$endgroup$
$begingroup$
Since the behavior is documented I conclude this is the intended design feature. I use NotebookEvaluate for package development, because it is much more convenient way to add new definitions and navigate in the many cell notebook than in plain .m file. I think I will try to add Clear[Out] as the last cell in the external.nb.
$endgroup$
– user18792
Mar 20 at 7:29
$begingroup$
@user18792 You can edit an.m
file as if it were a notebook. You can add section cells and text cells. You can close and open section cells. Try it.
$endgroup$
– Szabolcs
Mar 20 at 8:47
add a comment |
$begingroup$
I am guessing that this has to do with the following note in the NotebookEvaluate
documentation:
The cells of the notebook are evaluated in a dialog subsession.
Here is an example session demonstrating similar behaviour:
See Dialog
if you are not familiar with it.
Within the dialog, $Line
keeps getting incremented as usual, and Out
values are set. But once the dialog finishes, $Line
is reset to its original value.
This is documented:
Dialog automatically localizes the values of
$Line
,$MessageList
, and$Epilog
.
Side note: A dialog is something you would normally encounter not when explicitly entering it, but when interrupting evaluation or when debugging (say, you set the debugger to break on a message/assert). Try e.g. Do[Pause[1], i, 30]
, then interrupt using Alt-,
(Option-Command-.
on Mac). Now you can evaluate i
to check its value, or examine the kernel state in other ways. Exit the dialog using Return[]
. It is natural that one would not want these evaluations to influence $Line
once the dialog has finished.
$endgroup$
I am guessing that this has to do with the following note in the NotebookEvaluate
documentation:
The cells of the notebook are evaluated in a dialog subsession.
Here is an example session demonstrating similar behaviour:
See Dialog
if you are not familiar with it.
Within the dialog, $Line
keeps getting incremented as usual, and Out
values are set. But once the dialog finishes, $Line
is reset to its original value.
This is documented:
Dialog automatically localizes the values of
$Line
,$MessageList
, and$Epilog
.
Side note: A dialog is something you would normally encounter not when explicitly entering it, but when interrupting evaluation or when debugging (say, you set the debugger to break on a message/assert). Try e.g. Do[Pause[1], i, 30]
, then interrupt using Alt-,
(Option-Command-.
on Mac). Now you can evaluate i
to check its value, or examine the kernel state in other ways. Exit the dialog using Return[]
. It is natural that one would not want these evaluations to influence $Line
once the dialog has finished.
answered Mar 19 at 12:29
SzabolcsSzabolcs
165k15450954
165k15450954
$begingroup$
Since the behavior is documented I conclude this is the intended design feature. I use NotebookEvaluate for package development, because it is much more convenient way to add new definitions and navigate in the many cell notebook than in plain .m file. I think I will try to add Clear[Out] as the last cell in the external.nb.
$endgroup$
– user18792
Mar 20 at 7:29
$begingroup$
@user18792 You can edit an.m
file as if it were a notebook. You can add section cells and text cells. You can close and open section cells. Try it.
$endgroup$
– Szabolcs
Mar 20 at 8:47
add a comment |
$begingroup$
Since the behavior is documented I conclude this is the intended design feature. I use NotebookEvaluate for package development, because it is much more convenient way to add new definitions and navigate in the many cell notebook than in plain .m file. I think I will try to add Clear[Out] as the last cell in the external.nb.
$endgroup$
– user18792
Mar 20 at 7:29
$begingroup$
@user18792 You can edit an.m
file as if it were a notebook. You can add section cells and text cells. You can close and open section cells. Try it.
$endgroup$
– Szabolcs
Mar 20 at 8:47
$begingroup$
Since the behavior is documented I conclude this is the intended design feature. I use NotebookEvaluate for package development, because it is much more convenient way to add new definitions and navigate in the many cell notebook than in plain .m file. I think I will try to add Clear[Out] as the last cell in the external.nb.
$endgroup$
– user18792
Mar 20 at 7:29
$begingroup$
Since the behavior is documented I conclude this is the intended design feature. I use NotebookEvaluate for package development, because it is much more convenient way to add new definitions and navigate in the many cell notebook than in plain .m file. I think I will try to add Clear[Out] as the last cell in the external.nb.
$endgroup$
– user18792
Mar 20 at 7:29
$begingroup$
@user18792 You can edit an
.m
file as if it were a notebook. You can add section cells and text cells. You can close and open section cells. Try it.$endgroup$
– Szabolcs
Mar 20 at 8:47
$begingroup$
@user18792 You can edit an
.m
file as if it were a notebook. You can add section cells and text cells. You can close and open section cells. Try it.$endgroup$
– Szabolcs
Mar 20 at 8:47
add a comment |
Thanks for contributing an answer to Mathematica Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f193547%2fstrange-behavior-of-out%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
$begingroup$
The kernel state (including In/Out values) is not local to notebooks. This is expected.
$endgroup$
– Szabolcs
Mar 19 at 12:05
$begingroup$
That is clear, however why then not to continue the enumeration from the last Out[ ] value the kernel knows in the new notebook? I find this confusing.
$endgroup$
– user18792
Mar 19 at 12:17
$begingroup$
Right, now I see what you mean.
primary.nb
keeps counting up from 1, yet higher input line values are already set inOut
thanks toexternal.nb
. It is indeed strange.$endgroup$
– Szabolcs
Mar 19 at 12:22