octave-maintainers
[Top][All Lists]
Advanced

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

[Patch]: Re: bug with plot


From: David Bateman
Subject: [Patch]: Re: bug with plot
Date: Mon, 29 Oct 2007 10:56:50 +0100
User-agent: Thunderbird 1.5.0.7 (X11/20060921)

Michael Goffioul wrote:
> On 10/29/07, Tatsuro MATSUOKA <address@hidden> wrote:
>   
>> Dear Michael
>>
>> I have tested
>>
>> plot(1:100,'.')
>>
>> on MSVC octave-2.9.15.
>>
>> It seems to be filled circle a plot but not a dot plot.
>>
>> Is this from wxt terminal of wgnuplot for windows?
>>     
>
> The result is the same for the wxt and windows terminals. The pt == 7
> gives a filled circle (but I guess you can consider this as a dot...).
>
>   
>> What is the ps and pt to send wgnuplot ?
>>     
>
> No idea. If you want to see gnuplot caps, start wgnuplot manually and
> type "test". You'll see the pt mapping.
>
> Michael.
>
>   
The issue is that Octave should ignore the markersize argument for the
"." point style. The attached patch should address this..

D.




-- 
David Bateman                                address@hidden
Motorola Labs - Paris                        +33 1 69 35 48 04 (Ph) 
Parc Les Algorithmes, Commune de St Aubin    +33 6 72 01 06 33 (Mob) 
91193 Gif-Sur-Yvette FRANCE                  +33 1 69 35 77 01 (Fax) 

The information contained in this communication has been classified as: 

[x] General Business Information 
[ ] Motorola Internal Use Only 
[ ] Motorola Confidential Proprietary

*** ./scripts/plot/__go_draw_axes__.m.orig16    2007-10-24 22:13:50.000000000 
+0200
--- ./scripts/plot/__go_draw_axes__.m   2007-10-29 10:54:39.117656870 +0100
***************
*** 1101,1107 ****
      style = "linespoints";
    endif
  
!   if (isfield (obj, "markersize"))
      if (have_newer_gnuplot)
        fprintf (plot_stream, " pointsize %f", obj.markersize);
      else
--- 1101,1107 ----
      style = "linespoints";
    endif
  
!   if (isfield (obj, "markersize") && pt != "7")
      if (have_newer_gnuplot)
        fprintf (plot_stream, " pointsize %f", obj.markersize);
      else

reply via email to

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