필터 지우기
필터 지우기

(GUI variable saving) guidata vs appdata

조회 수: 1 (최근 30일)
Voulgarakis Georgios
Voulgarakis Georgios 2013년 2월 4일
Dear all
I need your opinion on the matter. In order to allow the user to enter various parameters, my program has a GUI figure. The problem is that the user by interacting with my program, creates a big amount of data, which have to be stored and processed every time. My problem is that when the user hovers his mouse on my figure, I need to go trough a lot of these data.
So, saving where, these data, will ensure the maximum speed for my program? Should I go with the appdata, or with the guidata (saving the variable directly into the guihandle)?
Thanks in advance

채택된 답변

Sean de Wolski
Sean de Wolski 2013년 2월 4일
편집: Sean de Wolski 2013년 2월 4일
guidata() Just uses setappdata() internally. That being said: setappdata() will be faster since you don't have the overhead of what's inside guidata().
  댓글 수: 3
Sean de Wolski
Sean de Wolski 2013년 2월 4일
What appdata are you using when you use setappdata; and how are you timing it?
Sean de Wolski
Sean de Wolski 2013년 2월 4일
Also, if you're really worried about timing and control, (which it sounds like you are!), ditch GUIDE and write the GUI programatically. GUIDE uses an older framework that is not necessarily speed or control optimized.
Using nested functions will get you this.
These examples will help you getting started:

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Jan
Jan 2013년 2월 4일
GUIs live in the frequency domain of 10 Hz: Mouse clicks by the user, animated effects, waiting for update of the screen - GUIs are slow and that's ok, because they are useful for the slow visual reception by human.
When calculations should happen with a high speed, they should be decoupled from the GUI, such that the decision between guidata and setappdata does not matter at all. Processing a lot of data whenever the mouse is moved is prone to problems caused by the latency. Unfortunately such an uncoupling is not easy in Matlab, because Matlab runs a single thread only.
You do not have to search for the spatial objects dynamically. The areas belonging to certain objects change only when you move the 3D or 2D scene and when new objects are added.
Finally I'm convinced that getappdata is faster than guidata for the reasons Sean has posted already. But the small overhead of both functions should not matter, when you avoid to call them thousands of times for one processing step. Calling them once should be sufficient, when the data are stored in a useful structure.
  댓글 수: 4
Sean de Wolski
Sean de Wolski 2013년 2월 5일
Voulgarakis Georgios
Voulgarakis Georgios 2013년 2월 5일
@Sean de Wolski
thanks for the link. What it shows is pretty much what I have done. :)
The procedure for drag n drop is grab(replace buttondownfcn), drag(replace windowbuttonmotionfcn) and release (replace buttonupfcn).
What I am trying to achieve though, is even before the user has clicked on an object(axes) (which event would trigger the buttondownfcn of the axes), I would like that I somehow know, where the cursor is over.
@JanSimon
This is where, in order to achieve it, in the the standard windowbuttondownfcn (before having it replaced by the drag), I do a check to see if the cursor is whithin the bounds of any of the objects. This calculation (which is done for every cursor movement) is not going very fast (especially if I have a lot of axes!).

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Graphics Objects에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by