An open exchange for the MATLAB and Simulink user community |
Hosted by The MathWorks |
|
| Related Topics |
| New Products | Support | Documentation | Training | Webinars | Jobs | Newsletters |
| Problems? Suggestions? Contact us at files@mathworks.com | © 1994-2008 The MathWorks, Inc. Trademarks Privacy Policy |
hee Doug,
this is a really nice feature… I want to use it for my GUI as well, but if I apply it on real data (obtained from a racecar) then Matlab gives the following error:
Warning: line XData length (2) and YData length (500) must be equal.
and all I did with your m-file was replacing the definition of h into:
h=plot(data(1:500,1),data(1:500,4),’ButtonDownFcn’, @startDragFcn)
and the plot disappears from the figure.
how can I apply this feature to a dataplot?
cheers Vincent
Vincent,
Assign these variables as a trouble shooting step:
x = data(1:500,1)
y = data(1:500,4)
Check to see if these are the same size.
Then try:
plot(x,y) %skip button down for now
Test that
Finally go to this command
plot(x,y,’ButtonDownFcn’, @startDragFcn)
If you take these systematic steps, I think you will find the problem.
Doug
yeah I solved that problem, the length of x was not correct. I have it working on my own data, very cool. now i want to put it in my gui, but matlab gave me the following error;
??? Input argument “handles” is undefined.
Error in ==> Data_Postprocessor_v7>startDragFcn at 658
Data=getappdata(handles.figure1,’mydata’)
??? Error while evaluating line ButtonDownFcn
I use the above code at the start in every callback function of the gui to get the data. so it works in all the callback functions but when I put it in the ButtonDown function Matlab produces the above error. is it maybe because a callback function is not the same as the ButtonDown function?
thanks Doug
Vincent
Vincent,
I would need to see the code to figure this out. Send it to support and we can figure it out.
www.mathworks.com/support
Very cool. Works great as an intereactive thresholding
I have a similar problem as Vincent. I tried to use these functions inside my GUI, although I think these created functions can’t see the handles of the GUI.
My startDragFcn is written basically the same way as Vincent:
startDragFcn(hObject, eventdata, handles)
%Inside this function handles is not availabel and I need the axes that is stored in the handles.
When I click over the line I get ??? Input argument “handles” is undefined.
I was looking for an answer for this problem in matlab web page and I found the solution. When using the functions presented by the Doug (nice work Doug) all you have to do to use them inside your GUIs is to pass the handles of the GUI inside a cell.
When using additional arguments for the callback function, you must set the value of the property to a cell array (i.e., enclose the function handle and arguments in curly braces). For example,
You can define the callback function to accept additional input arguments by adding them to the function definition. For example,
function startDragFcn(src,eventdata,arg1)
arg1 is an additional argument. In my case I used the handles of the GUI as an additional argument:
function startDragFcn(hObject,eventdata,handles)
So, for the callback function you have to enclose the function handle and the additional arguments in curly braces. For example,
set(hLine,’ButtonDownFcn’,{@startDragFcn,handles});
set(hFigure, ‘WindowButtonUpFcn’,{@stopDragFcn,handles});
Hi!
This is really great!:] I’ve used this idea to move the data points on my plot. But here is my query:
the code works really great on Matlab 7.1, but when I run it on the older version (actually it is Matlab 6.1.0.450)
I get the following error:
********************************************************
??? Undefined function or variable ‘f’.
Error in ==> G:\MATLAB_61\MOUSE_CAPTURE\mouse_capt.m (startDragFcn)
On line 66 ==> set(f,’WindowButtonMotionFcn’,@draggingFcn)
??? Error while evaluating line ButtonDownFcn.
??? Undefined function or variable ‘f’.
Error in ==> G:\MATLAB_61\MOUSE_CAPTURE\mouse_capt.m (stopDragFcn)
On line 128 ==> set(f, ‘WindowButtonMotionFcn’,”)
??? Error while evaluating figure WindowButtonUpFcn.
********************************************************
Why is that? What to do to make it work on the older version?
Everest,
I just did a quick check. That version of MATLAB is about three years ago. There have been enough changes in function handles that I suspect that is the reason code written for the newer version of MATLAB does not work in an older version.
Doug
Thanks Doug!
The problem is solved now.. Actually I’ve used UserData property to gave the name to my ‘figure’,axis’ and ‘line’ so I could call them in the external function (draggingFcn etc.)
However, it was not so obvious at the beginning.
Everest