Strange behavior of Out[]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

Expeditious Retreat

Font hinting is lost in Chrome-like browsers (for some languages )

Did Shadowfax go to Valinor?

Fencing style for blades that can attack from a distance

How is it possible to have an ability score that is less than 3?

How to format long polynomial?

How can bays and straits be determined in a procedurally generated map?

Why dont electromagnetic waves interact with each other?

Languages that we cannot (dis)prove to be Context-Free

How is the claim "I am in New York only if I am in America" the same as "If I am in New York, then I am in America?

What is the offset in a seaplane's hull?

Is it tax fraud for an individual to declare non-taxable revenue as taxable income? (US tax laws)

An academic/student plagiarism

Can an x86 CPU running in real mode be considered to be basically an 8086 CPU?

Theorems that impeded progress

Why do falling prices hurt debtors?

What are the differences between the usage of 'it' and 'they'?

Why not use SQL instead of GraphQL?

Today is the Center

Is it important to consider tone, melody, and musical form while writing a song?

Have astronauts in space suits ever taken selfies? If so, how?

Mathematical cryptic clues

What does "Puller Prush Person" mean?

A newer friend of my brother's gave him a load of baseball cards that are supposedly extremely valuable. Is this a scam?



Strange behavior of Out[]


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













7












$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?










share|improve this question











$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 in Out thanks to external.nb. It is indeed strange.
    $endgroup$
    – Szabolcs
    Mar 19 at 12:22















7












$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?










share|improve this question











$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 in Out thanks to external.nb. It is indeed strange.
    $endgroup$
    – Szabolcs
    Mar 19 at 12:22













7












7








7





$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?










share|improve this question











$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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 19 at 11:27









Kuba

107k12211533




107k12211533










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 in Out thanks to external.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$
    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$
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










1 Answer
1






active

oldest

votes


















7












$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:



enter image description here



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.






share|improve this answer









$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












Your Answer





StackExchange.ifUsing("editor", function ()
return StackExchange.using("mathjaxEditing", function ()
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
);
);
, "mathjax-editing");

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
);



);













draft saved

draft discarded


















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









7












$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:



enter image description here



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.






share|improve this answer









$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
















7












$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:



enter image description here



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.






share|improve this answer









$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














7












7








7





$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:



enter image description here



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.






share|improve this answer









$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:



enter image description here



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.







share|improve this answer












share|improve this answer



share|improve this answer










answered Mar 19 at 12:29









SzabolcsSzabolcs

163k14447944




163k14447944











  • $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$
    @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


















draft saved

draft discarded
















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

Identifying “long and narrow” polygons in with PostGISlength and width of polygonWhy postgis st_overlaps reports Qgis' “avoid intersections” generated polygon as overlapping with others?Adjusting polygons to boundary and filling holesDrawing polygons with fixed area?How to remove spikes in Polygons with PostGISDeleting sliver polygons after difference operation in QGIS?Snapping boundaries in PostGISSplit polygon into parts adding attributes based on underlying polygon in QGISSplitting overlap between polygons and assign to nearest polygon using PostGIS?Expanding polygons and clipping at midpoint?Removing Intersection of Buffers in Same Layers

Masuk log Menu navigasi

อาณาจักร (ชีววิทยา) ดูเพิ่ม อ้างอิง รายการเลือกการนำทาง10.1086/39456810.5962/bhl.title.447410.1126/science.163.3863.150576276010.1007/BF01796092408502"Phylogenetic structure of the prokaryotic domain: the primary kingdoms"10.1073/pnas.74.11.5088432104270744"Towards a natural system of organisms: proposal for the domains Archaea, Bacteria, and Eucarya"1990PNAS...87.4576W10.1073/pnas.87.12.4576541592112744PubMedJump the queueexpand by handPubMedJump the queueexpand by handPubMedJump the queueexpand by hand"A revised six-kingdom system of life"10.1111/j.1469-185X.1998.tb00030.x9809012"Only six kingdoms of life"10.1098/rspb.2004.2705169172415306349"Kingdoms Protozoa and Chromista and the eozoan root of the eukaryotic tree"10.1098/rsbl.2009.0948288006020031978เพิ่มข้อมูล