concatenate multiple files listed in ListBox using PushButton
6 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
PF
le 1 Oct 2015
Réponse apportée : Walter Roberson
le 1 Oct 2015
Hi I have imported and listed multiple files in listbox (e.g.3 files, fullpath and filename are listed e.g.'C:\Users\file1.mat'). By clicking on the pushbutton, 3 listed files shall be concatenated to a single files.
for i=1:3
fileimportpath(i)= get(handles.listbox3,'String');
fid=fopen(fileexportpath,'a');
fprintf(fid,'%4.3f %2.5f %2.5f\r\n',A,B,C);
end
fclose('all');
Currently, this script encountered problem in reading the 'fileimportpath'. May I know what is the solution for it?
Thanks!
0 commentaires
Réponse acceptée
Walter Roberson
le 1 Oct 2015
fileimportpath = get(handles.listbox3, 'String');
for i = 1 : 3
fid = fopen(fileimportpath{i}, 'a');
fprintf(fid,'%4.3f %2.5f %2.5f\r\n',A,B,C);
fclose(fid);
end
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Migrate GUIDE Apps 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!