octave-bug-tracker
[Top][All Lists]
Advanced

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

[Octave-bug-tracker] [bug #50652] ytickformat function missing


From: Markus Mützel
Subject: [Octave-bug-tracker] [bug #50652] ytickformat function missing
Date: Tue, 4 Apr 2017 13:15:24 -0400 (EDT)
User-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:53.0) Gecko/20100101 Firefox/53.0

Follow-up Comment #2, bug #50652 (project octave):

The final function should probably also include a listener to the axes limits.
See this example in Matlab R2016a:

>> ha = gca;
>> ha.XAxis.TickLabelFormat = '$%.2f';
>> ha.XTickLabel

ans = 

    '$1.18'
    '$1.20'
    '$1.22'
    '$1.24'
    '$1.26'
    '$1.28'
    '$1.30'
    '$1.32'

>> xlim([0 1])
>> ha.XTickLabel

ans = 

    '$0.00'
    '$0.10'
    '$0.20'
    '$0.30'
    '$0.40'
    '$0.50'
    '$0.60'
    '$0.70'
    '$0.80'
    '$0.90'
    '$1.00'


Matlab seems to have added more granular control to each individual axis of an
axes object:
https://de.mathworks.com/help/matlab/ref/numericruler-properties.html

Most of those properties are duplicates to the ones present in the axes (that
have a preceding "X", "Y" or "Z"). But some of them seem to be new.

    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?50652>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




reply via email to

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