我想将一个数组传递给 gui 并在轴上显示该数组的每个元素...这些元素是图像的文件名...我编写了一段代码...这是我的 xyz.m 文件我想将数组“结果”传递给 gui result_image.m
result_image(result);
在我写的gui的opening_fn中......
result = varargin{1};
handles.output = hObject;
% Update handles structure
guidata(hObject, handles);
%axes(handles.axes1);
%imshow(im2fn);
for jj = 1:length(result)
axes(handles.axesjj);
imshow(result(jj));
我收到一个错误,因为 str2func Invalid function name ''
我不知道这里的 '' 是什么,而且我在 result_image(result);
请帮我!