Re: Re: level curve selection
- To: mathgroup at smc.vnet.net
- Subject: [mg66475] Re: [mg66460] Re: level curve selection
- From: "Chris Chiasson" <chris at chiasson.name>
- Date: Mon, 15 May 2006 23:48:56 -0400 (EDT)
- References: <200605140657.CAA03946@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Heheh, Did you try that? (Mathematica colors the background of the second plot white, so showing them both overwrites the contours of the first plot with white. It is still an interesting approach. I am sure the relevant graphics directives could be reaped out of the second plot. The main difficulty with this approach would be that the contour shading might be off (ie, some inner rings might be lighter than some outer rings). I wonder if that could be circumvented by extracting the PlotRange from the AbsoluteOptions of the first graph and setting that as an option for the second. I will look at this approach some more. Thank you Mr. Rowe. On 5/14/06, Bill Rowe <readnewsciv at earthlink.net> wrote: > 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 > > -- http://chris.chiasson.name/
- References:
- Re: level curve selection
- From: Bill Rowe <readnewsciv@earthlink.net>
- Re: level curve selection