在 MATLAB 中:
我有这个在命令行中运行最佳的独立函数:
function datacollect()
filename = uigetfile('*.txt')
[col] = importdata(fileName)
long = columns(:,1)
lat = columns(:,2)
handles.long = long;
handles.lat = lat;
但是当我在 GUIDE 中进行函数调用时:
datacollect()
我收到一个错误:
???引用不存在的字段“输出”。