MathGroup Archive 2008

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

Search the Archive

Re: Point Symbol and Mesh

  • To: mathgroup at smc.vnet.net
  • Subject: [mg88572] Re: Point Symbol and Mesh
  • From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
  • Date: Fri, 9 May 2008 03:21:41 -0400 (EDT)
  • Organization: Uni Leipzig
  • References: <fvudqc$ed7$1@smc.vnet.net>
  • Reply-to: kuska at informatik.uni-leipzig.de

Hi,

ith[{m = 1000, c = 10},
   Plot[m x + c, {x, 0, 101}, Mesh -> {Range[40, 100, 10]},
    MeshStyle -> {PointSize[Large], Red}]] /.
  Point[xy_] :> (Text["\[FilledUpTriangle]", #] & /@ xy)

??

Regards
   Jens

Thomas Dowling wrote:
> Hello,
> 
> Is there any easy way of changing the Point Symbol given with Mesh from a
> circle to, say, a
> square or a triangle? An example is given in the following code:
> 
> With[{m = 1000, c = 10},
>  Plot[m x + c, {x, 0, 101}, Mesh -> {Range[40, 100, 10]},
>   MeshStyle -> {PointSize[Large], Red}]]
> 
> 
> What I would like to do is to superimpose two or more plots, with each line
> having a different symbol (circle, square, triangle ... ) for
> the points generated by Mesh.
> 
> I am aware of PlotMarkers, but this only seem to apply to ListPlot.
> 
> 
> Thanks for your help
> 
> Thomas Dowling.
> 
> 


  • Prev by Date: Re: Question on the Limiting Value of Ratios of Consecuative Primes...
  • Next by Date: Re: Solving on mathematica
  • Previous by thread: Point Symbol and Mesh
  • Next by thread: Re: Re: Point Symbol and Mesh