concatenate multiple files listed in ListBox using PushButton

1 view (last 30 days)
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!

Accepted Answer

Walter Roberson
Walter Roberson on 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

More Answers (0)

Categories

Find more on Migrate GUIDE Apps in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!