help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: makersize for dots


From: David Bateman
Subject: Re: makersize for dots
Date: Mon, 12 Jul 2010 22:04:52 +0200
User-agent: Mozilla-Thunderbird 2.0.0.22 (X11/20090706)

lo wrote:
hello,

I have installed octave 3.3.51 on a Linux Suse 11.2;

running the following piece of code
t = 0:0.1:6.3;
plot(t,cos(t), ".", "markersize", 30);

the dots in the graphic window are tiny,
in fact, changing the marker size has no effect,
the dots are still tiny (though it works if I select "+" instead of ".");
is it normal ?
if so, how can I change the size of the dots ?

big thanks for the support !

Because "." is a dot and is independent of the size. As you notice it works with the other markers. If you really want big dots try

t = 0:0.1:6.3; plot(t,cos(t), ".", "markersize", 5, "markerfacecolor", "auto");


D.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]