Changeset 552


Ignore:
Timestamp:
Oct 11, 2012, 10:45:36 PM (12 years ago)
Author:
sommeria
Message:

bugs corrected IN UVMAT. toolltip for InputTable? introduced in series;fig

Location:
trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/uvmat.m

    r549 r552  
    885885nbfield_j=max(max(max(j2_series)));
    886886if isempty(nbfield_j)
    887     nbfield_j=max(max(max(j2_series)));
     887    nbfield_j=max(max(max(j1_series)));
    888888end
    889889if ~isempty(XmlData.Time)
    890890    %transform .Time to a column vector if it is a line vector the nomenclature uses a single index
    891891    if isequal(size(XmlData.Time,1),1)
    892         NomType=get(handles.NomType,'String');
     892        %NomType=get(handles.NomType,'String');
    893893        XmlData.Time=(XmlData.Time)';
    894894    end
     
    896896last_i_cell=get(handles.last_i,'String');
    897897if isempty(nbfield)
    898     last_i_cell{1}='';
     898    last_i_cell{index}='';
    899899else
    900     last_i_cell{1}=num2str(nbfield);
     900    last_i_cell{index}=num2str(nbfield);
    901901end
    902902set(handles.last_i,'String',last_i_cell)
    903903last_j_cell=get(handles.last_j,'String');
    904904if isempty(nbfield_j)
    905      last_j_cell{1}='';
     905     last_j_cell{index}='';
    906906else
    907      last_j_cell{1}=num2str(nbfield_j);
     907     last_j_cell{index}=num2str(nbfield_j);
    908908end
    909909set(handles.last_j,'String',last_j_cell);
Note: See TracChangeset for help on using the changeset viewer.