Changeset 1043


Ignore:
Timestamp:
06/22/09 13:38:55 (15 years ago)
Author:
Mathieu Morlighem
Message:

minor

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/m/classes/public/isresultconsistent.m

    r807 r1043  
    8787        if ~isnan(md.maxcontrolconstraint),
    8888                if any(md.results.control.parameter>md.maxcontrolconstraint)
    89                         disp(['''control'' result not consistent: inverse parameter is greater than ' md.maxcontrolconstraint]);
     89                        disp(['''control'' result not consistent: inverse parameter is greater than ' num2str(md.maxcontrolconstraint)]);
    9090                        bool=0; return;
    9191                end
     
    9393        if ~isnan(md.mincontrolconstraint),
    9494                if any(md.results.control.parameter<md.mincontrolconstraint)
    95                         disp(['''control'' result not consistent: inverse parameter is smaller than ' md.mincontrolconstraint]);
     95                        disp(['''control'' result not consistent: inverse parameter is smaller than ' num2str(md.mincontrolconstraint)]);
    9696                        bool=0; return;
    9797                end
Note: See TracChangeset for help on using the changeset viewer.