Re: plot, /ylog with less than one decade [message #31994] |
Wed, 04 September 2002 10:19 |
David Fanning
Messages: 11724 Registered: August 2001
|
Senior Member |
|
|
David Fanning (david@dfanning.com) writes:
> Ronith Buller (ronith.buller@weizmann.ac.il) writes:
>
>> In
>> IDL> y=findgen(9)+1
>> IDL> plot, y, /ylog
>> , the y axis is pretty useless.
>> Any workarounds?
>
> Go to Martin Shultz's web page and get the two useful
> programs AXLABEL and LOGLEVELS. Your problems will be
> solved. :-)
>
> http://www.mpimet.mpg.de~schultz.martin/idl/html/libmartin_s chultz.html
Whoops. Sorry. I should have put down *how* your
problems will be solved:
IDL> y=findgen(9)+1
IDL> plot, y, /ylog, YTickformat='(A1)'
IDL> AXLABEL,LOGLEVELS([Min(y),Max(y)]
Cheers,
David
--
David W. Fanning, Ph.D.
Fanning Software Consulting, Inc.
Phone: 970-221-0438, E-mail: david@dfanning.com
Coyote's Guide to IDL Programming: http://www.dfanning.com/
Toll-Free IDL Book Orders: 1-888-461-0155
|
|
|
|