Judging from the code, why don't you use
fid = fopen(filename,'rt');
tmp = textscan(fid, '%s %d %d %d %d', 'Headerlines', 10);
fclose(fid);
textscan uses space and newline as delimiters by default. If you give newline as delimiter explicitly, you loose the space as delimiter, and the portability (Windows often uses \r\n as a single newline, whereas Unix-derived OSes use \n). So, given your data, just leave it out.
Then you jump through hoops to remove 10 headerlines, while textscan already has a nice baked-in option for that. So, those steps aren't needed. You proceed by splitting the stuff by a pass through regexp with a space as delimiter, but since textscan already splits on space, that's not needed either.
So, using the three lines above, you'll get
tmp =
{9x1 cell} [9x1 int32] [9x1 int32] [9x1 int32] [9x1 int32]
Now, now to store the data more conveniently. I can think of two ways:
- Cell arrays
- Structures
For both, you'll have to find the unique names first:
[names, inds] = unique(tmp{1});
Using cell arrays
This will give you a cell-array of the data sorted by name:
data = [tmp{2:end}];
results = arrayfun(@(x) data(strcmp(tmp{1},x),:), ...
names, 'uniformoutput', false);
Now you can index into results as follows:
results{3}(1,4) %# for the 4th '11' for 'Name3'
Remember that Matlab is 1-based, so that a(3) indicates the 3rd element of a, not the 4th.
Breakdown of the command:
The function arrayfun loops through the elements of the input array, applies a function to each element, and collects the results in either a regular array (if possible) or a cell-array (when impossible (error) and when given 'uniformoutput', false). It's a bit like a foreach-construct.
Taking the input array equal to the unique names found in the first step, the trick is in the function to apply to each name. The function @(x) data(strcmp(tmp{1},x),:) first finds the indices for the the given name in tmp{1} (array containing all names) using strcmp. These indices are then used to index data = [tmp{2:end}], i.e., all the other arrays.
The results for each individual unique name is then stored in the cell-array results.
Using Structures
You can go one step further and use the cell-array results to have a more human-readable data structure. After applying all the previous steps, execute this:
for ii = 1:numel(names)
output.(names{ii}) = results{ii}; end
Now you can reference to your data by name:
output.Name3(1,4) %# to index the 4th '11' from 'Name3'
The syntax your_struct.('someString') is called dynamic structure referencing. It references or creates a field in the structure your_struc called someString.
Now, if names{ii} contains underscores you want to get rid of, then you can define
camelCase = @(x) regexprep(x, '_+(\w?)', '${upper($1)}')
or
camelCase = @(x) regexprep(x, ' +(\w?)', '${upper($1)}')
for spaces. Then use
for ii = 1:numel(names)
output.( camelCase(names{ii}) ) = results{ii}; end
Kudos to these guys for that last one.