Like this?
fid = fopen('YourData.txt','r'); C = textscan(fid,'%s%f%f%f%f%*4s','Delimiter',';'); fclose(fid);
A = string(C{1}); B = cell2mat(C(2:end));
Like this?
fid = fopen('YourData.txt','r'); C = textscan(fid,'%s%f%f%f%f%*4s','Delimiter',';'); fclose(fid);
A = string(C{1}); B = cell2mat(C(2:end));
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!