Skip to content
Snippets Groups Projects
Commit 16dba1d4 authored by Eric Wait's avatar Eric Wait
Browse files

Drawing to the ui function plot and not gca

parent 9995e245
Branches
Tags
No related merge requests found
......@@ -205,8 +205,8 @@ for i=1:length(channelData)
plot(handles.funcPlot,x,y,':','Color',channelData(i).color,'LineWidth',2.0);
end
end
xlim([0 1]);
ylim([0 1]);
xlim(handles.funcPlot,[0 1]);
ylim(handles.funcPlot,[0 1]);
hold off
saveData();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment