我正在尝试使用弹出菜单创建用户界面,该菜单允许用户选择要分析的数据通道。因此,我需要将弹出菜单字符串设置为仅显示给定数据文件中可用的通道数。
单击箭头时,菜单应如下所示:
选择频道
----------的 1 -----------
----------的 2 -----------
---------- 3 -----------
本节的代码如下:
%%create a variable to list the number of channels in this data
string=(1:channels)
%%create variable for desired popup string
dropbox_string=('Select Channel", string)
%%set pop-up menu string
set(get(handles.popupmenu2, 'string'), dropbox_string)
错误如下:无法从单元格转换为双精度。
我确定需要使用我的字符串'进行一些操作。和' dropbox_string'变量我只是不确定是什么。
由于