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