MathGroup Archive 2005

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

Search the Archive

Re: Plot with 10E10 instead of 1*10E10

  • To: mathgroup at smc.vnet.net
  • Subject: [mg61075] Re: Plot with 10E10 instead of 1*10E10
  • From: Peter Pein <petsie at dordos.net>
  • Date: Sun, 9 Oct 2005 01:35:50 -0400 (EDT)
  • References: <di7qeq$kik$1@smc.vnet.net>
  • Sender: owner-wri-mathgroup at wolfram.com

Antonio Cardoso schrieb:
> Hello,
> 
> I'm trying to make a LogLogPlot with, for example, 10E10 instead of 1*10E10 on the axes. Can someone help me about that?
> 
> Thanks,
> 
> Antonio Cardoso
> 

LogLogPlot[x, {x, 10^9, 10^11}, Ticks ->
   Table[({10^#1, StringJoin["10E", ToString[#1]]} & ) /@ Range[9, 11],
   {2}]
]
or try Table[{10^#,Superscript[10,#]}&/@Range[8,12],{2}] for the ticks.

Peter


  • Prev by Date: leaveing out empty ticks that have no data
  • Next by Date: Re: Plot with 10E10 instead of 1*10E10
  • Previous by thread: Re: Plot with 10E10 instead of 1*10E10
  • Next by thread: RE: Plot with 10E10 instead of 1*10E10