Changeset 842


Ignore:
Timestamp:
Dec 11, 2014, 9:44:35 PM (9 years ago)
Author:
sommeria
Message:

button added in series to clear an input line

Location:
trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/series.m

    r840 r842  
    33533353%------------------------------------------------------------------------
    33543354Mode_Callback([],[])
     3355
     3356
     3357% --- Executes on button press in ClearLine.
     3358function ClearLine_Callback(hObject, eventdata, handles)
     3359% hObject    handle to ClearLine (see GCBO)
     3360% eventdata  reserved - to be defined in a future version of MATLAB
     3361% handles    structure with handles and user data (see GUIDATA)
     3362iline=get(handles.InputTable,'UserData');
     3363InputTable=get(handles.InputTable,'Data');
     3364InputTable(iline,:)=[];
     3365set(handles.InputTable,'Data',InputTable);
Note: See TracChangeset for help on using the changeset viewer.