ボタン 2 を押して曲線をプロットする MATLAB のインターフェイスがあります。今、図を印刷できません。より正確には、プロットを印刷するための別のボタンを追加したいと考えています。これが私のコードの一部です:
% --- Executes on button press in pushbutton2.
function pushbutton2_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton2 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
%clear
%linkdata on
fileName = handles.fileName;
n_var=str2num(get(handles.n_var,'string'));
[x] = readColumns(fileName, n_var);
axes(handles.axes1);
hold on
plot(handles.axes1,x(1:n),'b','LineWidth',2)
hold off
ありがとう。