MathGroup Archive 2006

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

Search the Archive

Re: how-to show a contourplot together with a point grid

  • To: mathgroup at smc.vnet.net
  • Subject: [mg72047] Re: how-to show a contourplot together with a point grid
  • From: Jean-Marc Gulliet <jeanmarc.gulliet at gmail.com>
  • Date: Sat, 9 Dec 2006 06:09:56 -0500 (EST)
  • Organization: The Open University, Milton Keynes, UK
  • References: <elbhqs$jsp$1@smc.vnet.net>

learner wrote:
> Hi guys,
>     i have a matix of dimension {m,n} and make a listcontourplot out of
> it. and i have another matrix of the same dimension and make a plot by
> : Show[Map[Point,grid]].
>    i want to overlap these two plots together. And I have tried using
> the second one as the Epilog of the first one, but it did not work. any
> ideas?
>    generally, how can i overlap two plots in one figure?
>    thanks for your attentions and reply
> 

/DisplayTogether/ should do what you are looking for. Do not forget to 
load the package Graphics`Graphics` before attempting to use 
DisplayTogether[].

<< Graphics`Graphics`
DisplayTogether[plot1, plot2, ... , opts]

Regards,
Jean-Marc


  • Prev by Date: interpolation of a matrix function
  • Next by Date: Re: On Reduce
  • Previous by thread: how-to show a contourplot together with a point grid
  • Next by thread: RE: how-to show a contourplot together with a point grid