Re: Unexpected results
- To: mathgroup at smc.vnet.net
- Subject: [mg14235] Re: Unexpected results
- From: Hans Staugaard Nielsen <hsn at imf.au.dk>
- Date: Mon, 12 Oct 1998 13:51:22 -0400
- Organization: University of Aarhus, Department of Computer Science (DAIMI)
- References: <6vf4vc$dg9@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Daniel Zepeda wrote: > Hi, > > Why doesn't > > Plot[10^Log[x], {x, 0,10}] > > plot what I expect? I expect it to plot y=x, but it doesn't, it plots an > what looks like an exponential curve. > > Dan Because Log[x] returns the natural log, you need to use Log[10,x] for your example to work. Hans