%------------------------------------------------------------------------ % NAME: qpcls_methods % % Checks of a string contains the name of one of the handled % constrained least squares retrievel methods. % % Handled methods are: % OEM % % FORMAT: % % OUT: b Boolean, 0=no handled metho, 1=the method is handled. % IN: method String with name of a retrieval method. %------------------------------------------------------------------------ % HISTORY: 2001.10.12 Created by Patrick Eriksson. function b = qpcls_methods( method ) b = 0; if strcmp( lower( method ), 'oem' ) b= 1; end