Changeset 8261


Ignore:
Timestamp:
05/11/11 11:15:03 (14 years ago)
Author:
Mathieu Morlighem
Message:

allows verbose('all')

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/m/classes/verbose.m

    r7872 r8261  
    4141                                binary=varargin{1};
    4242                                if ischar(binary),
    43                                         binary=bin2dec(binary);
     43                                        if strcmpi(binary,'all'),
     44                                                binary=2^11-1; %all ones
     45                                        else
     46                                                binary=bin2dec(binary);
     47                                        end
    4448                                end
    4549                                verbose=BinaryToVerbose(verbose,binary);
Note: See TracChangeset for help on using the changeset viewer.