Changeset 552
- Timestamp:
- Oct 11, 2012, 10:45:36 PM (12 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/uvmat.m
r549 r552 885 885 nbfield_j=max(max(max(j2_series))); 886 886 if isempty(nbfield_j) 887 nbfield_j=max(max(max(j 2_series)));887 nbfield_j=max(max(max(j1_series))); 888 888 end 889 889 if ~isempty(XmlData.Time) 890 890 %transform .Time to a column vector if it is a line vector the nomenclature uses a single index 891 891 if isequal(size(XmlData.Time,1),1) 892 NomType=get(handles.NomType,'String');892 %NomType=get(handles.NomType,'String'); 893 893 XmlData.Time=(XmlData.Time)'; 894 894 end … … 896 896 last_i_cell=get(handles.last_i,'String'); 897 897 if isempty(nbfield) 898 last_i_cell{ 1}='';898 last_i_cell{index}=''; 899 899 else 900 last_i_cell{ 1}=num2str(nbfield);900 last_i_cell{index}=num2str(nbfield); 901 901 end 902 902 set(handles.last_i,'String',last_i_cell) 903 903 last_j_cell=get(handles.last_j,'String'); 904 904 if isempty(nbfield_j) 905 last_j_cell{ 1}='';905 last_j_cell{index}=''; 906 906 else 907 last_j_cell{ 1}=num2str(nbfield_j);907 last_j_cell{index}=num2str(nbfield_j); 908 908 end 909 909 set(handles.last_j,'String',last_j_cell);
Note: See TracChangeset
for help on using the changeset viewer.