Use text concatenated with GUI variable in filename

1 vue (au cours des 30 derniers jours)
Deirdre
Deirdre le 3 Fév 2014
I'm trying to open a file and write to it but I keep getting this error: "Error using fprintf, Invalid file identifier. Use fopen to generate a valid file identifier." I need the file name to be a text edit from a GUI (patientid) combined with the date and time.
code:
id = get(handles.patientid,'String');
filename = strcat(id,': ',datestr(now));
fileID = fopen(filename,'w');
fprintf(fileID,...);
fclose(fileID)
thanks!

Réponses (1)

Azzi Abdelmalek
Azzi Abdelmalek le 3 Fév 2014
Modifié(e) : Azzi Abdelmalek le 3 Fév 2014
The filename with : is not valid
try
id = get(handles.patientid,'String');
filename = strcat(id,datestr(now,'dd-mm-yyyy HH-MM-SS'),'.txt');
fileID = fopen(filename,'w');
fprintf(fileID,...);
fclose(fileID)

Catégories

En savoir plus sur Low-Level File I/O 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