printing long lines [message #7054] |
Tue, 24 September 1996 00:00  |
Dean Schulze
Messages: 9 Registered: July 1996
|
Junior Member |
|
|
IDL keeps putting newlines in my output. How do I
get IDL to print long lines without inserting unwanted
newlines in the output?
Thanks.
Dean Schulze
============================================================ ==========
"You plot the growth of the NEA [National Education Association] and
the dropping of SAT scores, and they're inversely proportional.
The problems are unions in the schools. The problem is bureaucracy.
I'm one of these people who believes the best thing we could ever do
is go to the full voucher system."
Steve Jobs
Wired Magazine, Feb. 96
http://www.hotwired.com/wired/4.02/features/jobs.html
============================================================ =========
|
|
|
Re: printing long lines [message #7137 is a reply to message #7054] |
Thu, 26 September 1996 00:00  |
davidf
Messages: 2866 Registered: September 1996
|
Senior Member |
|
|
In a recent article Dean Schulze <schulze@cassini.lpl.arizona.edu> writes:
> IDL keeps putting newlines in my output. How do I
> get IDL to print long lines without inserting unwanted
> newlines in the output?
>
IDL uses a default width of 80 columns when it is writing
formatted output. If you would like the width to be greater
than that, use the WIDTH keyword when you open the file
for writing. For example,
OPENW, lun, filename, /GET_LUN, WIDTH=500
Yours,
David
--
David Fanning, Ph.D.
Phone: 970-221-0438
Fax: 970-221-4728
E-Mail: davidf@fortnet.org
|
|
|