Hello,
I have two check boxes AB and CD. AB and CD are array of numbers that I want to plot depending on which one is checked, and I would not like it to polt until I click the plot button. This is my code below, the problem is that it doesn't output anything and I get an error: Not enough input arguments. Please Help:
function Try1_OpeningFcn(hObject, eventdata, handles, varargin)
handles.output = hObject;
guidata(hObject, handles);
end
function varargout = Try1_OutputFcn(hObject, eventdata, handles)
varargout{1} = handles.output;
end
function AB_box_Callback(hObject, eventdata, handles)
AB_status=get(handles.AB_box,'value');
end
function CD_box_Callback(hObject, eventdata, handles)
CD_status=get(handles.soc_box,'value');
end
function plot_button_Callback(hObject, eventdata, handles, v_status,soc_status)
AB = [5 5.4 10.3 15.7];
CD=[45 45 22 11];
if get(AB_status,value)==1
plot(AB);
elseif get(CD_status)==1
plot(CD);
end
end
I have two check boxes AB and CD. AB and CD are array of numbers that I want to plot depending on which one is checked, and I would not like it to polt until I click the plot button. This is my code below, the problem is that it doesn't output anything and I get an error: Not enough input arguments. Please Help:
function Try1_OpeningFcn(hObject, eventdata, handles, varargin)
handles.output = hObject;
guidata(hObject, handles);
end
function varargout = Try1_OutputFcn(hObject, eventdata, handles)
varargout{1} = handles.output;
end
function AB_box_Callback(hObject, eventdata, handles)
AB_status=get(handles.AB_box,'value');
end
function CD_box_Callback(hObject, eventdata, handles)
CD_status=get(handles.soc_box,'value');
end
function plot_button_Callback(hObject, eventdata, handles, v_status,soc_status)
AB = [5 5.4 10.3 15.7];
CD=[45 45 22 11];
if get(AB_status,value)==1
plot(AB);
elseif get(CD_status)==1
plot(CD);
end
end