MathGroup Archive 2006

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

Search the Archive

Re: level curve selection

  • To: mathgroup at smc.vnet.net
  • Subject: [mg66460] Re: level curve selection
  • From: Bill Rowe <readnewsciv at earthlink.net>
  • Date: Sun, 14 May 2006 02:57:41 -0400 (EDT)
  • Sender: owner-wri-mathgroup at wolfram.com

On 5/13/06 at 2:42 AM, chris at chiasson.name (Chris Chiasson) wrote:

>Does anyone know of good algorithms that can select contours to plot
>while also accepting user specifed contours?

>Something like:

>ContourPlot[yaddayadda,Contours->AutomaticButIncludeThese[{5,10,15}]
>]

One way to accomplish this would be as follows:

Show[
  Block[{$DisplayFunction=Indentity},
  {ContourPlot[yaddayadda,Contours->Automatic],
  ContourPlot[yaddayadda,Contours->A{5,10,15}]}]];

--
To reply via email subtract one hundred and four


  • Prev by Date: Re: Limit Question
  • Next by Date: RE: Limit Question
  • Previous by thread: level curve selection
  • Next by thread: Re: Re: level curve selection