MathGroup Archive 2010

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

Search the Archive

Re: Export Dynamic Matrix to XLS

  • To: mathgroup at smc.vnet.net
  • Subject: [mg106189] Re: Export Dynamic Matrix to XLS
  • From: David Reiss <dbreiss at gmail.com>
  • Date: Mon, 4 Jan 2010 06:01:19 -0500 (EST)
  • References: <hhpl5v$9nv$1@smc.vnet.net>

Make use of the function Setting to get the value of the Dynamic
object.  Here is a simple example:

In[6]:= y=Dynamic[x]

Out[6]= 9

In[7]:= x=9

Out[7]= 9

In[8]:= FullForm[y]

Out[8]//FullForm= Dynamic[x]

In[9]:= FullForm[Setting[y]]

Out[9]//FullForm= 9


--David
http://scientificarts.com/worklife


On Jan 3, 3:40 am, Asrhael <asrh... at msn.com> wrote:
> Hello, im using Mathematica v7.
>
> I am developing an application that manipulates and produces a table
> in excel. But then, by applying the Dynamic command, attempting to
> export the table published previously only exported the command itself
> (Dynamic[]).
>
> There is any way to export the table "updated", without having to
> upgrade the notebook via the option on the menu?
>
> Thank you very much, happy holidays.
> Francisco Ch=E1vez



  • Prev by Date: Re: Question about the derivative of Abs
  • Next by Date: Re: More /.{I->-1} craziness
  • Previous by thread: Export Dynamic Matrix to XLS
  • Next by thread: Re: Re: Export Dynamic Matrix to XLS