Why this code does not save .txt file as .text file inside the matlab?
이전 댓글 표시

I am using appdesinger to design app that improt .txt files and save it but the code save it inside matlab in form of matlab.mat as showen in the figure but I want it to be save as .txt file.
[filename,pathname] = uigetfile({'*.txt'},'File Selector');
app.WordFileEditField.Value = strcat(pathname,filename);
save();
댓글 수: 4
Rik
2019년 5월 26일
It sounds like you need to read the documentation for save. Also, if you want it in a .mat, why would you confuse everyone by have the extention be .txt?
Abdullah Alsuhaymi
2019년 5월 26일
Rik
2019년 5월 26일
Abdullah Alsuhaymi
2019년 5월 26일
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Spreadsheets에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!