MathGroup Archive 2007

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

Search the Archive

Re: "movie" of Table output for web page

  • To: mathgroup at smc.vnet.net
  • Subject: [mg73743] Re: [mg73716] "movie" of Table output for web page
  • From: János <janos.lobb at yale.edu>
  • Date: Tue, 27 Feb 2007 05:46:45 -0500 (EST)
  • References: <200702261113.GAA27766@smc.vnet.net>

On Feb 26, 2007, at 6:13 AM, Murray Eisenberg wrote:

> Without using webMathematica, I want to be able to put on a web page a
> "movie" consisting of the successive values of a Table whose 
> entries are
> mathematical instructions.  For example, of
>
>    TraditionalForm/@Table[Integrate[x^n Exp[x],x],{n,1,10}]
>
> I know how to make such a movie where the Input cell's output is 
> already
> a sequence of graphics (namely, Export as GIF).
>
> But how does one handle non-Graphics output?
>
>
> --
> Murray Eisenberg                     murray at math.umass.edu
> Mathematics & Statistics Dept.
> Lederle Graduate Research Tower      phone 413 549-1020 (H)
> University of Massachusetts                413 545-2859 (W)
> 710 North Pleasant Street            fax   413 545-1801
> Amherst, MA 01003-9305


I, as a newbie, would wrap it with Text Graphics and Show, like:

In[28]:=
(Show[Graphics[Text[#1,
       {1, 0}, {-1, 0}],
      PlotRange ->
       All]] & ) /@
   TraditionalForm /@
    Table[Integrate[
      x^n*Exp[x], x],
     {n, 1, 10}]

J=E1nos


------
"..because Annushka has already bought sunflower oil, and not only 
bought it, but spilled it too."
Bulgakov:  Master and Margarita



  • Prev by Date: Re: Hold and Equal
  • Next by Date: Re: Symbol name extraction
  • Previous by thread: "movie" of Table output for web page
  • Next by thread: Re: "movie" of Table output for web page