MATLAB: How to read a text file and store its data inside a matrix

cellcell arraysmatrixtextscan

I am trying to import text files, and convert it's data into a matrix. When I import the file, it stores it as a 50×1 cell, how can I convert this to a 50×9 or 50×10 matrix, where I can reference each aspect of the file individually? Screenshot (1).png
fid = fopen ('40_8deg_HL_Both.txt', 'r');
data = textscan(fid, '%s', 'HeaderLines', 9, 'delimiter', '/n');
fclose (fid);
mat = data{:};

Best Answer

clc; clear all ;
fid = fopen ('40_8deg_HL_Both.txt', 'r');
data = textscan(fid, '%s %s %f %f %f %f %f %f %f %s', 'HeaderLines', 9);
fclose (fid);
A = [data{3:9}]