One question. How can I include this utility in the GUI programming?
I simply had a GUI template which has,
1) Axis component
2)pushbutton component
I tried following code in the pushbutton callback,
x=0:10;
y=0:10;
plot(x,y);
and it works fine.
But when I tried following different codes,
1.scrollplot(plot(x,y));
2.scrollplot(handles.axes1,plot(x,y));
3.scrollplot(handles.axes1,plot(x,y),'axis','xy', 'minx',0,'maxx',10, 'miny',0,'maxy',10);
4.scrollplot(plot(x,y),'axis','xy', 'minx',0,'maxx',10, 'miny',0,'maxy',10);
none of them worked...!! It just shows those scrolling bars but does not work. I want to use this excellent utility in my GUI - will you plese suggest me how can I use it?
Versions I tried,
1.Matlab6.1 R12.1
2.Matlab7 R7007a