📄 gui_readselect.m
字号:
function iselect = gui_readselect(objlist)%*************************************************************************%* Copyright c 2001 The board of trustees of the Leland Stanford *%* Junior University. All rights reserved. *%* This script file may be distributed and used freely, provided *%* this copyright notice is always kept with it. *%* *%* Questions and comments should be directed to Todd Walter at: *%* twalter@stanford.edu *%*************************************************************************%% function iselect = gui_readselect(objlist)%% Returns the index of the selected option/s (Value field = 1) % in a list of object handlesiselect=[]; for i = 1:length(objlist), if get(objlist(i),'Value')==1, iselect = [iselect,i]; endend
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -