MathGroup Archive 2008

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

Search the Archive

Re: A 3D plot, x and y is log coordinates. How plot?

  • To: mathgroup at smc.vnet.net
  • Subject: [mg91097] Re: A 3D plot, x and y is log coordinates. How plot?
  • From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
  • Date: Wed, 6 Aug 2008 05:04:36 -0400 (EDT)
  • References: <g791gh$9kv$1@smc.vnet.net>

Hi,

the function is f(x,y) and not g(x,y) or q(x,y) I'm surprised !

Try

Plot3D[Exp[-x*y], {x, 1, 10}, {y, 1, 10}, PlotRange -> All] /.
  GraphicsComplex[pnts_, gr___] :>
   GraphicsComplex[{Log[#[[1]]], Log[#[[2]]], #[[3]]} & /@ pnts, gr]

if you function is Exp[-x*y]

Regards
   Jens

Simulate wrote:
> The function is z = f(x,y)
> 


  • Prev by Date: Re: Can not run Mathematica 6.0.3 on Fedora 9
  • Next by Date: Re: Multidimensional FITS files
  • Previous by thread: A 3D plot, x and y is log coordinates. How plot?
  • Next by thread: Re: A 3D plot, x and y is log coordinates. How plot?