我有程序,其中始于gui。我使用指南构建了它。我使用名为N.Mat(和PushButton功能)的垫子文件将4个变量从程序加载到4个GUI文本框中。
在程序中
n = [nuno, ndue, ntre, nquattro];
save n.mat
在GUI接口pushbutton
% --- Executes on button press in upload.
function upload_Callback(hObject, eventdata, handles)
% hObject handle to upload (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
S = load('n.mat');
handles.v1 = S.nuno;
handles.v2 = S.ndue;
handles.v3 = S.ntre;
handles.v4 = S.nquattro;
set(handles.initial1,'String',num2str(handles.v1));
set(handles.initial2,'String',num2str(handles.v2));
set(handles.initial3,'String',num2str(handles.v3));
set(handles.initial4,'String',num2str(handles.v4));
guidata(hObject, handles);
然后,我有其他4个文本框,在其中更改变量的值并将其保存在另一个垫子文件中。我不确定我是否正确执行此操作。
在程序中(在拨打mygui之前),我初始化了更新变量的M向量。
nunof = 0;
nduef = 0;
ntref = 0;
nquattrof = 0;
m = [nunof, nduef, ntref, nquattrof];
save m.mat
在程序中(调用MyGui后),我尝试加载M.Mat文件并从中提取变量,以便在程序中进一步计算中。
load m.mat;
nunof = m.nunof;
nduef = m.nduef;
ntref = m.ntref;
nquattrof = m.nquattrof;
在此之前,在GUI界面'完成'按钮中,我尝试将输入保存到M.Mat文件中:
function done_Callback(hObject, eventdata, handles)
% hObject handle to done (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% save the parameters to file
load('m.mat');
m = [nunof, nduef, ntref, nquattrof];
nunof = str2num(get(handles.final1,'String'));
nduef = str2num(get(handles.final2,'String'));
ntref = str2num(get(handles.final3,'String'));
nquattrof = str2num(get(handles.final4,'String'));
save('m.mat','-append');
我想知道为什么这不起作用,以及如何更改它。非常感谢。
您不能使用save('m.mat','-append');
。您错过了一个接触的选项。
为了使用附加
save(filename,variables,'-append')
取自-https://au.mathworks.com/help/matlab/ref/save.html
另外,从您的代码中,您没有重新定义M struct中的变量。