git.schokokeks.org
Repositories
Help
Report an Issue
SVMCrossVal.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
de85736
Branches
Tags
master
SVMCrossVal.git
private
addStudyToMenu.m
almost all "change study" features implemented. needs testing.
Christoph Budziszewski
commited
de85736
at 2009-07-30 18:46:52
addStudyToMenu.m
Blame
History
Raw
function addStudyToMenu(menu,label,callbackargs) uimenu(menu,... 'Label',label,... 'Callback',{@mcb_load_study,label,callbackargs}); end function mcb_load_study(src,blah,filename,uimodel) %save current study studyID = get(uimodel.txtStudyID,'String'); saveStudy(studyID,uimodel); %load selected study load_study(filename,uimodel); end