MathGroup Archive 2011

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

Search the Archive

Re: How to run ".nb" file always in dos command line

  • To: mathgroup at smc.vnet.net
  • Subject: [mg123666] Re: How to run ".nb" file always in dos command line
  • From: wch <weichanghe2000 at gmail.com>
  • Date: Thu, 15 Dec 2011 04:52:53 -0500 (EST)
  • Delivered-to: l-mathgroup@mail-archive0.wolfram.com
  • References: <jc4pan$cfa$1@smc.vnet.net> <jc7aui$p27$1@smc.vnet.net>

On 12=D4=C213=C8=D5, =CF=C2=CE=E76=CA=B155=B7=D6, Chris Degnen <deg... at cwgsy.net> wrote:
> Hi,
>
> You can evaluate your notebook from the command line with a
> procedure such as this.
>
> Assuming your working directory is C:\temp\plot demo
>
> create a text file C:\temp\plot demo\runplot.m containing this:
>
> Needs["JLink`"];
> $FrontEndLaunchCommand = "Mathematica.exe";
> UseFrontEnd[
> selected = Select[Notebooks[],
>    CurrentValue[#, NotebookFileName] === "1.nb" &];
> If[selected != {},
>  targetnotebook = First@selected;
>  SelectionMove[targetnotebook, All, Notebook];
>  SelectionEvaluate[targetnotebook];
>  ];
> Exit[]];
>
> Now to open your file from the command line.  I first put
> Mathematica on the search path, just for the session (using
> setlocal).  So, at the command line type or paste:
>
> setlocal
> PATH = C:\Program Files\Wolfram Research\Mathematica\8.0\;%PATH%
> mathematica "C:\temp\plot demo\1.nb"
>
> (Your DOS command "> 1.nb" did not work for me, so I used
> mathematica "C:\temp\plot demo\1.nb")
>
> Now you can evaluate the notebook with this command:
>
> start MathKernel -noprompt -initfile "C:\temp\plot demo\runplot.m"
>
> In case this is of interest, here are some references where
> I have discussed similar applications on StackOverflow:-
>
> Evaluating a notebook from the command linehttp://tinyurl.com/evalnotebook
>
> About kernel warning message from UseFrontEndhttp://tinyurl.com/uncaughtthrow
>
> Starting and restarting kernelshttp://tinyurl.com/restartkernel
>
> On Dec 12, 11:42 am, wch <weichanghe2... at gmail.com> wrote:
>
>
>
> > Hi,everybody,I have met an problem when run mathematica in DOS
> > interface. I will tell you this confuse:
> > in "1.nb" file, I have written a sentence: Plot[Sin[x], {x, 0, 6 Pi}],
> > then I run 1.nb in DOS command line with "> 1.nb", it will be opened
> > in a moment.
> > now I want to evaluate "1.nb" in DOS in order to generate the figure
> > of Plot[Sin[x], {x, 0, 6 Pi}]. but I don't know how to send order to
> > mathematica.
> > In a word, I want to execute all process in DOS command not under
> > notebook interface through "shift + enter". combination.
> > Thank you for all the information in advance,I am wating for your
> > coming.- =D2=FE=B2=D8=B1=BB=D2=FD=D3=C3=CE=C4=D7=D6 -
>
> - =CF=D4=CA=BE=D2=FD=D3=C3=B5=C4=CE=C4=D7=D6 -

thank you very much. it is wonderful, it almost satisfying my desire,
but there are some questions I don't understand:
I can run 1.nb and generate the figure now, but how to accomplish
saving the generated plot and exit 1.nb these a series of process
through DOS command?
I am looking forward to your reply.
thanks !



  • Prev by Date: Re: NMinimize problem: fct minimized uses FindRoot
  • Next by Date: Re: NMinimize problem: fct minimized uses FindRoot
  • Previous by thread: Re: How to run ".nb" file always in dos command line
  • Next by thread: Problem with InputField