Re: how to disable wrap-around of the printout lines ?
- To: mathgroup at yoda.physics.unc.edu
 - Subject: Re: how to disable wrap-around of the printout lines ?
 - From: keiper
 - Date: Mon, 26 Jul 93 09:02:51 CDT
 
	> is there a way to tell MMA not to wrap the line around when
	> printing out the rows ?
Yes.  Change the default PageWidth of $Output:
In[18]:= SetOptions[$Output, PageWidth -> Infinity]
Out[18]= {{FormatType -> OutputForm, PageWidth -> Infinity, PageHeight -> 22, TotalWidth -> Infinity, TotalHeight -> Infinity, StringConversion :> $StringConversion}}
 
In[19]:= N[Pi, 120]
Out[19]= 3.141592653589793238462643383279502884197169399375105820974944592307816406286208998628034825342117067982148086513282306647
Note: PageWidth can be set to any positive integer, Infinity simply means
don't ever break a line.
Jerry B. Keiper
keiper at wri.com
Wolfram Research, Inc.