|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?我要加入
x
我在matlab下能够打开文本 但是脱机后就打不开文本
帮忙解决一下:@)
% --- Executes on button press in pushbutton1.
%have pushbutton1 cover of fan input data save
function pushbutton1_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
[filename,pathname]=uiputfile('.txt','opendata');
fandatawr=fopen(filename,'a+');
open(filename);
guidata(hObject, handles); |
|