We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
avoid using GUIDE
write GUIs as objects - it eases up many things like graphical updates, syncing etc.
Externalize local functions that make sense to be used publicly
for example - move winreject_refresh(h) out of winreject or - even better make refresh a pulic method of winreject object
winreject_refresh(h)
winreject
Use linkfun_ prefix for functions that interface between GUIs (link functions).
linkfun_
for example - a function that opens up multiedit_gui, sets relevant callbacks, validates output and updates main GUI would be a link function
have a clear structure in guidata (winreject has its guidata quite messy - this will be changed)
guidata
guidata should only store handles to figure objects, all other data should be setappdata and getappdata
setappdata
getappdata
The text was updated successfully, but these errors were encountered:
Some far-fetched, but related tasks:
comp_explore
compsel
Sorry, something went wrong.
No branches or pull requests
avoid using GUIDE
write GUIs as objects - it eases up many things like graphical updates, syncing etc.
Externalize local functions that make sense to be used publicly
Use
linkfun_
prefix for functions that interface between GUIs (link functions).have a clear structure in
guidata
(winreject
has its guidata quite messy - this will be changed)guidata
should only store handles to figure objects, all other data should besetappdata
andgetappdata
The text was updated successfully, but these errors were encountered: