Skip to content
Snippets Groups Projects
  • jacques.grelet_ird.fr's avatar
    01f366df
    Yves find a bug in _LINCOEF variable display, slope and offset was inverted · 01f366df
    jacques.grelet_ird.fr authored
    This was due to the new .ini labview file:
    SSJT_LINCOEF_OFFSET=0.00000000
    SSJT_LINCOEF_SLOPE=1.00000000
    offset was the first indice in _LINCOEF variable and slope second. 
    Before revision 348, it was the opposite.
    NEVER USE HARCODED INDICE IN YOUR PROGRAM
    
    replace with following code:
       A_CNDC = strmatch('SLOPE', tsg.CNDC_LINCOEF_CONV);
       set( hetCalCNDCSlope,  'String', num2str(tsg.CNDC_LINCOEF(A_CNDC)));
    
    01f366df
    History
    Yves find a bug in _LINCOEF variable display, slope and offset was inverted
    jacques.grelet_ird.fr authored
    This was due to the new .ini labview file:
    SSJT_LINCOEF_OFFSET=0.00000000
    SSJT_LINCOEF_SLOPE=1.00000000
    offset was the first indice in _LINCOEF variable and slope second. 
    Before revision 348, it was the opposite.
    NEVER USE HARCODED INDICE IN YOUR PROGRAM
    
    replace with following code:
       A_CNDC = strmatch('SLOPE', tsg.CNDC_LINCOEF_CONV);
       set( hetCalCNDCSlope,  'String', num2str(tsg.CNDC_LINCOEF(A_CNDC)));