Effacer les filtres
Effacer les filtres

make a GUI in matlab

1 vue (au cours des 30 derniers jours)
raviranjan singh
raviranjan singh le 7 Mai 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.

Réponse acceptée

Jan
Jan le 7 Mai 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 commentaires
Jan
Jan le 8 Mai 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 le 8 Mai 2018
thanks. it works properly.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Environment and Settings dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by