How can I plot a plotyy in a gui? The code...
axes(handles.TSchart);
[TSrp]=plotyy(1:rrows,r,1:rrows,p);
set(get(TSrp(1),'Ylabel'),'String','Coefficient r')
set(get(TSrp(2),'Ylabel'),'String','p-Value')
title(TSheader(1,i));
xlabel('lag (return)');
grid on
...gives an error:
??? There is no...
Thanks, but how can I store a handle of an axes which I designed manually in a gui in a variable? I tried this:
% --- Executes during object creation, after setting all properties.
function axes5_CreateFcn(hObject, eventdata, axes5)
% hObject handle to axes5 (see GCBO)
% eventdata reserved...
I have 2 axes in a figure (designed in the gui) and want to plot in these axes. How can I select, in which of the 2 axes I want to plot? Or, how can I get the handle of an axes which is not the current axes at the moment?
Thanks for your help!