Clear Filters
Clear Filters

make a GUI in matlab

6 views (last 30 days)
raviranjan singh
raviranjan singh on 7 May 2018
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.

Accepted Answer

Jan
Jan on 7 May 2018
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 Comments
Jan
Jan on 8 May 2018
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.
raviranjan singh
raviranjan singh on 8 May 2018
thanks. it works properly.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!