MathGroup Archive 2012

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

Search the Archive

Re: Export

  • To: mathgroup at smc.vnet.net
  • Subject: [mg128126] Re: Export
  • From: christopher arthur <chris.arthur1 at gmail.com>
  • Date: Mon, 17 Sep 2012 00:24:08 -0400 (EDT)
  • Delivered-to: l-mathgroup@mail-archive0.wolfram.com
  • Delivered-to: l-mathgroup@wolfram.com
  • Delivered-to: mathgroup-newout@smc.vnet.net
  • Delivered-to: mathgroup-newsend@smc.vnet.net
  • References: <20120916072334.5DF1A683D@smc.vnet.net>
  • Reply-to: chris.arthur1 at gmail.com

Can you use StringForm?  Make all the entries strings before export.  That
way you can use AccountingForm or NumberForm also to set the look of
each entry.  Then you can probably cut and paste.

Chris


Adel Elsabbagh a écrit :
> Dear friends,
>
> I am trying to export a 30*30 matrix (M) with entries function in x and y
> to a txt file in order to use it by another program. I am using:
> Export["filename.txt",M]. I have two problems:
> 1. I want to reduce the precision of the coefficients of x & y. When I use
> N[M,n] or SetPrecision[M,n], the precision is reduced within the Notebook
> but not in the exported file. How to reduce the precision in the exported
> file?
> 2. Some entries look like "5*x + 3*y", which leaves spaces around the plus
> or minus signs. Is there a way to tell Mathematica not leave these spaces
> because the other program assumes that this is a new column?
>
> I also tried to write M//InputForm and just copy and past it, but I get a
> lot of expressions such as 1.935*^-6 which the other software cannot
> understand. Is there a way to write it in the form:  1.935e-6?
>
> Thanks in advance
>
>   




  • References:
    • Export
      • From: Adel Elsabbagh <aelsabbagh@gmail.com>
  • Prev by Date: Re: Landau letter, Re: Mathematica as a New Approach...
  • Next by Date: Re: Kernel exits
  • Previous by thread: Export
  • Next by thread: Re: Export