MathGroup Archive 2006

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

Search the Archive

Re: MatrixForm to JPG

  • To: mathgroup at smc.vnet.net
  • Subject: [mg64918] Re: MatrixForm to JPG
  • From: Bill Rowe <readnewsciv at earthlink.net>
  • Date: Tue, 7 Mar 2006 06:12:38 -0500 (EST)
  • Sender: owner-wri-mathgroup at wolfram.com

On 3/6/06 at 5:01 AM, bcolletti at compuserve.com (Bruce W. Colletti)
wrote:

>If there is a way (in a Mathematica session) to convert the
>MatrixForm output to a graphic G, then I could use Export[..., G,
>ImageResolution->X...] to produce a quality graphic.

>Any ideas?

It is fairly simply to create a graphic containing MatrixForm output. For example,

In[9]:=
data = Table[Subscript[a, i, j], {i, 3}, {j, 3}]; 
Show[Graphics[Text[MatrixForm[data], 
     Scaled[{0.5, 0.5}]]]]; 

But I am completely mystified as to why you would want to do this. It seems to me in any report written external to Mathematica, it would much preferable to have the matrix data typeset, rather than as a graphic.
--
To reply via email subtract one hundred and four


  • Prev by Date: Re: Extract values and multilpicities from list
  • Next by Date: Re: Numerical solutions of SDE
  • Previous by thread: Re: MatrixForm to JPG
  • Next by thread: Re: MatrixForm to JPG