octave-maintainers
[Top][All Lists]
Advanced

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

Re: ML plot comparison


From: Nicholas Jankowski
Subject: Re: ML plot comparison
Date: Tue, 7 Jan 2020 22:53:40 -0500

On Tue, Jan 7, 2020 at 6:32 PM Rik <address@hidden> wrote:
I took a look at ML-generated plots at
https://josoansi.de/octave_plot_compare/.  The tick marks for 2-D plots
seem overly large in all plots.  Is it possible that DefaultAxesTicklength
was set to something other than [.01, .025]?  If this turns out to be
correct, I think the whole series of plots should be re-generated after
first ensuring that no other default graphic properties have been set.

--Rik


on the matlab computer I used to generate the plots:

>> get(groot,'DefaultAxesTicklength')
ans =
    0.0280    0.0250

I've never knowingly made any manual changes to this property, so , not sure how it was set to 0.028. just reset with 

>> set(groot,'DefaultAxesTicklength','factory')
>> get(groot,'DefaultAxesTicklength')
ans =
    0.0100    0.0250

and re-ran the test script.  so somewhere in the script it sets the default and doesn't change it back.  haven't stepped through yet to find that spot.

reply via email to

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