Re: Mesh in ListDensityPlot
- To: mathgroup at smc.vnet.net
- Subject: [mg42283] Re: Mesh in ListDensityPlot
- From: bobhanlon at aol.com (Bob Hanlon)
- Date: Fri, 27 Jun 2003 06:31:14 -0400 (EDT)
- References: <bdeeu9$dht$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Draw your own mesh data=Table[Sin[x]/Cos[x^2+y^2], {x,-2,2,0.02},{y,-2,2,0.025}]; ListDensityPlot[data, Mesh->False, Epilog->{GrayLevel[.25], Table[Line[{{x,0},{x,201} }], {x,0,160,8}], Table[Line[{{0,y},{161,y} }], {y,0,201,10}]}]; Bob Hanlon In article <bdeeu9$dht$1 at smc.vnet.net>, "Walden, CJ (Chris)" <C.J.Walden at rl.ac.uk> wrote: << Subject: Mesh in ListDensityPlot From: "Walden, CJ (Chris)" <C.J.Walden at rl.ac.uk> To: mathgroup at smc.vnet.net Date: Thu, 26 Jun 2003 09:38:17 +0000 (UTC) Hi, I'm using ListDensityPlot to display a 2880 by 200 matrix of real values. If I set Mesh->True the result is completely dominated by black mesh lines. Does anyone know an easy way of displaying a subset of mesh lines? >><BR><BR>