MathGroup Archive 2008

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

Search the Archive

Re: How to export a lot of different plots?

  • To: mathgroup at smc.vnet.net
  • Subject: [mg93524] Re: How to export a lot of different plots?
  • From: Albert Retey <awnl at gmx-topmail.de>
  • Date: Thu, 13 Nov 2008 06:34:58 -0500 (EST)
  • References: <gfgqg2$djr$1@smc.vnet.net>

yiping.boston at gmail.com schrieb:
> I need to generates a lot of plots, but I don't know are there any
> convenient ways to output my plot with different file names, such as
> plot001.jpg.
> Can I just out put the plot with Export["f[i].jpg"] with the loop
> index i? It seems that I can't run the label in the export file name.
> The loop doesn't recognize the index i , and treat it as a letter.
> 
If you have a list of plots, you can use something like this:

Do[
Export["plot"<>ToString[i]<>".jpg",plot[[i]]],
{i,1,Length[plot]}
]

to use a number in a filename, you need to convert it to a string and
StringJoin (thas the <> in the above code) it with the rest of the filename.

hth,

albert


  • Prev by Date: Re: How to export a lot of different plots?
  • Next by Date: Re: Model the surface of an ellipsoid
  • Previous by thread: Re: How to export a lot of different plots?
  • Next by thread: Re: How to export a lot of different plots?