MathGroup Archive 1996

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

Search the Archive

Re: extracting points plotted by ContourPlot

  • To: mathgroup at smc.vnet.net
  • Subject: [mg3381] Re: [mg3356] extracting points plotted by ContourPlot
  • From: Allan Hayes <hay at haystack.demon.co.uk>
  • Date: Sun, 3 Mar 1996 02:22:58 -0500
  • Sender: owner-wri-mathgroup at wolfram.com

Richard Easther <easther at cfi.waseda.ac.jp>
>Subject: [mg3356] extracting points plotted by ContourPlot
Wants to extract the lists of points on the contours lines given by  
ContourPlot

Richard: You might try something like

Cases[Graphics[
   ContourPlot[x^2+y^2-1.3, {x,-1,1},{y,-1,1}, Contours -> {0}]],
   Line[lst_] -> lst,
   Infinity
]

Allan Hayes, hay at haystack.demon.co.uk

==== [MESSAGE SEPARATOR] ====


  • Prev by Date: Re: Find the solutions of two equations
  • Next by Date: Re: extracting points plotted by ContourPlot
  • Previous by thread: Re: extracting points plotted by ContourPlot
  • Next by thread: Re: extracting points plotted by ContourPlot