Changeset 21250


Ignore:
Timestamp:
10/07/16 15:17:28 (8 years ago)
Author:
Mathieu Morlighem
Message:

CHG: enable axis

Location:
issm/trunk-jpl/src/m/plot/colormaps
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/plot/colormaps/bluewhitered.m

    r18611 r21250  
    1 function newmap = bluewhitered(m)
     1function newmap = bluewhitered(m,CAXIS)
    22%BLUEWHITERED   Blue, white, and red color map.
    33%   BLUEWHITERED(M) returns an M-by-3 matrix containing a blue to white
     
    3434end
    3535
    36 
    3736bottom = [0 0 0.5];
    3837botmiddle = [0 0.5 1];
     
    4241
    4342% Find middle
    44 lims = get(gca, 'CLim');
     43if nargin < 2
     44        lims = get(gca, 'CLim');
     45else
     46        lims = CAXIS;
     47end
    4548
    4649% Find ratio of negative to positive
  • issm/trunk-jpl/src/m/plot/colormaps/bluewhitered_smooth.m

    r19349 r21250  
    1 function newmap = bluewhitered_smooth(m)
     1function newmap = bluewhitered_smooth(m,CAXIS)
    22%BLUEWHITERED   Blue, white, and red color map.
    33%   BLUEWHITERED(M) returns an M-by-3 matrix containing a blue to white
     
    4646
    4747% Find middle
    48 lims = get(gca, 'CLim');
     48if nargin < 2
     49        lims = get(gca, 'CLim');
     50else
     51        lims = CAXIS;
     52end
    4953
    5054% Find ratio of negative to positive
Note: See TracChangeset for help on using the changeset viewer.