RE: ContourListPlot
- To: mathgroup at smc.vnet.net
- Subject: [mg66520] RE: [mg66481] ContourListPlot
- From: "David Park" <djmp at earthlink.net>
- Date: Wed, 17 May 2006 03:31:04 -0400 (EDT)
- Sender: owner-wri-mathgroup at wolfram.com
Just use PlotRange. Using the example from ListContourPlot... ListContourPlot[ Table[x^2 + y^2 + Random[Real, {-0.2, 0.2}], {x, -2, 2, 0.1}, {y, -2, 2, 0.1}], ColorFunction -> Hue, MeshRange -> {{-2, 2}, {-2, 2}}, PlotRange -> {{-1.01, 1}, {-1.01, 1}, Automatic}]; David Park djmp at earthlink.net http://home.earthlink.net/~djmp/ From: sepp [mailto:gary.larson at gmx.at] To: mathgroup at smc.vnet.net I plot xyz data in Mathematica with the ContourListPlot command. the x, y axis are labelled with the meshrange command. this works fine, but sometimes I would prefer only to display some parts of my data, so if the original data goes from {x1,x2}, then I would like to show only {x1a,x2a} with x1a>x1 and x2a<x2. Is there a built in function in Mathematica to realise this? thanks!