Thread Subject: set 'MarkerSize' to no marker

Subject: set 'MarkerSize' to no marker

From: Mike

Date: 13 Nov, 2009 06:48:43

Message: 1 of 5

Hi

I use plot with 'MarkerSize' setting. I set 'MarkerSize' as 1, 3 and
5 for three consecutive curves.
When I saw them, I can saw the last two curves with growing sizes of
markers and the first one is without a marker. This is what I want.
I use copy figure and copy it to Microsoft Word.

Then I found there are very obvious markers for 'MarkerSize'=1. I try
to set to .01 and but still find the markers. How to set it to no
markers for multiple curves?

ps. I use more or less the followings:
marktype={'o';'d';'s'}; markSize=[1 3 5];
markFaceColor={'w';'k'};linestyle={'-';':'};
 plot(x,y(:,i+(ivis-1)*5),['k',linestyle{i},marktype
{1}],'MarkerFaceColor',[markFaceColor{i}],'MarkerSize',markSize
(j));hold on;

Mike

Subject: set 'MarkerSize' to no marker

From: Pekka Kumpulainen

Date: 13 Nov, 2009 07:00:20

Message: 2 of 5

Mike <sulfateion@gmail.com> wrote in message <dceb9e24-097f-4f5f-8fdd-d7cc08934d68@b25g2000prb.googlegroups.com>...
> Hi
>
> I use plot with 'MarkerSize' setting. I set 'MarkerSize' as 1, 3 and
> 5 for three consecutive curves.
> When I saw them, I can saw the last two curves with growing sizes of
> markers and the first one is without a marker. This is what I want.
> I use copy figure and copy it to Microsoft Word.
>
> Then I found there are very obvious markers for 'MarkerSize'=1. I try
> to set to .01 and but still find the markers. How to set it to no
> markers for multiple curves?
>
> ps. I use more or less the followings:
> marktype={'o';'d';'s'}; markSize=[1 3 5];
> markFaceColor={'w';'k'};linestyle={'-';':'};
> plot(x,y(:,i+(ivis-1)*5),['k',linestyle{i},marktype
> {1}],'MarkerFaceColor',[markFaceColor{i}],'MarkerSize',markSize
> (j));hold on;
>
> Mike

Set Marker property to none. In this case to remove the marker from the first line:
marktype={'none';'d';'s'};

Subject: set 'MarkerSize' to no marker

From: Mike

Date: 16 Nov, 2009 00:03:59

Message: 3 of 5

On Nov 13, 3:00 pm, "Pekka Kumpulainen"
<pekka.nospam.kumpulai...@tut.please.fi> wrote:
> Mike <sulfate...@gmail.com> wrote in message <dceb9e24-097f-4f5f-8fdd-d7cc08934...@b25g2000prb.googlegroups.com>...
> > Hi
>
> > I use plot with 'MarkerSize' setting.  I set 'MarkerSize' as 1, 3 and
> > 5 for three consecutive curves.
> > When I saw them, I can saw the last two curves with growing sizes of
> > markers and the first one is without a marker.  This is what I want.
> > I use copy figure and copy it to Microsoft Word.
>
> > Then I found there are very obvious markers for 'MarkerSize'=1.  I try
> > to set to .01 and but still find the markers.  How to set it to no
> > markers for multiple curves?
>
> > ps.  I use more or less the followings:
> > marktype={'o';'d';'s'}; markSize=[1 3 5];
> > markFaceColor={'w';'k'};linestyle={'-';':'};
> >  plot(x,y(:,i+(ivis-1)*5),['k',linestyle{i},marktype
> > {1}],'MarkerFaceColor',[markFaceColor{i}],'MarkerSize',markSize
> > (j));hold on;
>
> > Mike
>
> Set Marker property to none. In this case to remove the marker from the first line:
> marktype={'none';'d';'s'};- Hide quoted text -
>
> - Show quoted text -

Not working.
Follow your suggestion, using
marktype={'none';'d';'s'};
it shows "Error in color/linetype argument".
any suggestion?

Mike

Subject: set 'MarkerSize' to no marker

From: Mike

Date: 16 Nov, 2009 00:15:53

Message: 4 of 5

On Nov 16, 8:03 am, Mike <sulfate...@gmail.com> wrote:
> On Nov 13, 3:00 pm, "Pekka Kumpulainen"
>
>
>
>
>
> <pekka.nospam.kumpulai...@tut.please.fi> wrote:
> > Mike <sulfate...@gmail.com> wrote in message <dceb9e24-097f-4f5f-8fdd-d7cc08934...@b25g2000prb.googlegroups.com>...
> > > Hi
>
> > > I use plot with 'MarkerSize' setting.  I set 'MarkerSize' as 1, 3 and
> > > 5 for three consecutive curves.
> > > When I saw them, I can saw the last two curves with growing sizes of
> > > markers and the first one is without a marker.  This is what I want.
> > > I use copy figure and copy it to Microsoft Word.
>
> > > Then I found there are very obvious markers for 'MarkerSize'=1.  I try
> > > to set to .01 and but still find the markers.  How to set it to no
> > > markers for multiple curves?
>
> > > ps.  I use more or less the followings:
> > > marktype={'o';'d';'s'}; markSize=[1 3 5];
> > > markFaceColor={'w';'k'};linestyle={'-';':'};
> > >  plot(x,y(:,i+(ivis-1)*5),['k',linestyle{i},marktype
> > > {1}],'MarkerFaceColor',[markFaceColor{i}],'MarkerSize',markSize
> > > (j));hold on;
>
> > > Mike
>
> > Set Marker property to none. In this case to remove the marker from the first line:
> > marktype={'none';'d';'s'};- Hide quoted text -
>
> > - Show quoted text -
>
> Not working.
> Follow your suggestion, using
> marktype={'none';'d';'s'};
> it shows "Error in color/linetype argument".
> any suggestion?
>
> Mike- Hide quoted text -
>
> - Show quoted text -

It works if I use ' ' instead of 'none'.

Mike

Subject: set 'MarkerSize' to no marker

From: Pekka Kumpulainen

Date: 16 Nov, 2009 07:06:01

Message: 5 of 5

Mike <sulfateion@gmail.com> wrote in message <6db892e5-6295-4867-ab1f-b9fb767b4dd4@x5g2000prf.googlegroups.com>...
> On Nov 16, 8:03?am, Mike <sulfate...@gmail.com> wrote:
> > On Nov 13, 3:00?pm, "Pekka Kumpulainen"
> >
> >
> >
> >
> >
> > <pekka.nospam.kumpulai...@tut.please.fi> wrote:
> > > Mike <sulfate...@gmail.com> wrote in message <dceb9e24-097f-4f5f-8fdd-d7cc08934...@b25g2000prb.googlegroups.com>...
> > > > Hi
> >
> > > > I use plot with 'MarkerSize' setting. ?I set 'MarkerSize' as 1, 3 and
> > > > 5 for three consecutive curves.
> > > > When I saw them, I can saw the last two curves with growing sizes of
> > > > markers and the first one is without a marker. ?This is what I want.
> > > > I use copy figure and copy it to Microsoft Word.
> >
> > > > Then I found there are very obvious markers for 'MarkerSize'=1. ?I try
> > > > to set to .01 and but still find the markers. ?How to set it to no
> > > > markers for multiple curves?
> >
> > > > ps. ?I use more or less the followings:
> > > > marktype={'o';'d';'s'}; markSize=[1 3 5];
> > > > markFaceColor={'w';'k'};linestyle={'-';':'};
> > > > ?plot(x,y(:,i+(ivis-1)*5),['k',linestyle{i},marktype
> > > > {1}],'MarkerFaceColor',[markFaceColor{i}],',markSize
> > > > (j));hold on;
> >
> > > > Mike
> >
> > > Set Marker property to none. In this case to remove the marker from the first line:
> > > marktype={'none';'d';'s'};- Hide quoted text -
> >
> > > - Show quoted text -
> >
> > Not working.
> > Follow your suggestion, using
> > marktype={'none';'d';'s'};
> > it shows "Error in color/linetype argument".
> > any suggestion?
> >
> > Mike- Hide quoted text -
> >
> > - Show quoted text -
>
> It works if I use ' ' instead of 'none'.
>
> Mike

Sorry, I didn?t read your code carefully enough. I saw you have variables marktype and linestyle. However, 'none' is not valid marker when used as you do here. It works if you use the 'PropertyName',PropertyValue pair with the Marker too as you do with MarkerFaceColor and MarkerSize.
hth

Tags for this Thread

Add a New Tag:

Separated by commas
Ex.: root locus, bode

What are tags?

A tag is like a keyword or category label associated with each thread. Tags make it easier for you to find threads of interest.

Anyone can tag a thread. Tags are public and visible to everyone.

rssFeed for this Thread

Contact us at files@mathworks.com