MathGroup Archive 2003

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

Search the Archive

Re: Coordinates from an ImplicitPlot

  • To: mathgroup at smc.vnet.net
  • Subject: [mg39172] Re: Coordinates from an ImplicitPlot
  • From: atelesforos at hotmail.com (Orestis Vantzos)
  • Date: Sun, 2 Feb 2003 01:13:19 -0500 (EST)
  • References: <b1f65f$aqd$1@smc.vnet.net>
  • Sender: owner-wri-mathgroup at wolfram.com

Let's say you have imp=ImplictPlot[...];

First use Graphics[imp] to turn the ContourGraphics object into a
normal Graphics object.
Now with Cases[Graphics[imp],_Line,Infinity] you can collect all the
Line expressions that make the ImplicitPlot.
I don't know what you want to do with the points, but this returns a
simple 'flat' list with them:
Cases[Graphics[imp],l_Line:>Sequence@@l[[1]],Infinity]

Orestis

Kay Orgassa <Kay.Orgassa at gmx.de> wrote in message news:<b1f65f$aqd$1 at smc.vnet.net>...
> Does anyone know, how to extract the data points from an ImplicitPlot?
> Thanks, Kay


  • Prev by Date: Re: Help DSolve
  • Next by Date: Problem with NIntegrate -- Monte Carlo
  • Previous by thread: Re: Help DSolve
  • Next by thread: RE: Coordinates from an ImplicitPlot