MathGroup Archive 2007

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

Search the Archive

Exporting numbered files: apparent hangup?

  • To: mathgroup at smc.vnet.net
  • Subject: [mg80572] Exporting numbered files: apparent hangup?
  • From: AES <siegman at stanford.edu>
  • Date: Sun, 26 Aug 2007 03:08:58 -0400 (EDT)
  • Organization: Stanford University

If a recent one-time experiment was yielding valid results, an attempt 
to Export a set of sequentially numbered image files using

   Do[ 
      g=DensityPlot[ <<k-dependent stuff>>];
      Export["Fresnel reflection"<>ToString[PaddedForm[k, 3, 
         NumberPadding -> {"0", ""}]]<>".jpg",  g],
      {k, kmin, kmax}];

ran more or less forever (in 5.2), producing no error messages, but also 
no output.  Changing the input to

   Do[ 
      g=DensityPlot[ <<k-dependent stuff>>];
      Export["Fresnel reflection"<>ToString[PaddedForm[k, 3, 
         NumberPadding -> {"0", ""}]],  g,  "JPG"],
      {k, kmin, kmax}];

worked just fine, however.


  • Prev by Date: problem with parsing InputForm scientific notation (eg. 3.`*^-7)
  • Next by Date: Re: Mathematica 6 "save as PDF" page size issues
  • Previous by thread: Re: problem with parsing InputForm scientific notation (eg. 3.`*^-7)
  • Next by thread: Add custom points to automatically generated Ticks?