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.
>
>
- Follow-Ups:
- Re: Re: Point Symbol and Mesh
- From: "Thomas Dowling" <thomasgdowling@gmail.com>
- Re: Re: Point Symbol and Mesh