make a GUI in matlab
2 次查看(过去 30 天)
显示 更早的评论
the problem is to read the text from those files, show it on screen under respective heading and allow the user to change the same. Once values are modified, after clicking ok modified value to be overwritten in respective files.
pls suggest the code for this problem.
0 个评论
采纳的回答
Jan
2018-5-7
This is exactly what Matlab's editor does already. Why do you want to re-create such a standard tool?
But if you really want to do this, what does "show it on screen under respective heading" mean? A uitabgroup? While it is not very complicated to create such a tab group and add some buttons for loading and saving, this is a tedious work. Try to start writing a solution and ask a specific question.
7 个评论
Jan
2018-5-8
This is a problem of Notepad. All other editors can handle \n as line break reliably, but Notepad requires \r\n. Replace it by a smarter editor like WordPad or Notepad++. But if you really want to use this darn old poor editor, replace:
fprintf(fid, '%s\n', cstr{:})
by
fprintf(fid, '%s\r\n', cstr{:})
or open the file in text mode by:
[fid, msg] = fopen(FileName, 'wt')
I'd prefer to omit Notepad.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Text Files 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!