-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimport_vectors.m
103 lines (95 loc) · 3.18 KB
/
import_vectors.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
function test2 = import_vectors(filename, startRow, endRow)
%IMPORTFILE Import numeric data from a text file as a matrix.
% TEST2 = IMPORTFILE(FILENAME) Reads data from text file FILENAME for the
% default selection.
%
% TEST2 = IMPORTFILE(FILENAME, STARTROW, ENDROW) Reads data from rows
% STARTROW through ENDROW of text file FILENAME.
%
% Example:
% test2 = import_vectors('test2.bin_mu.txt', 1, 14228);
%
% See also TEXTSCAN.
% Auto-generated by MATLAB on 2016/08/04 02:29:19
%% Initialize variables.
delimiter = ' ';
if nargin<=2
startRow = 1;
endRow = inf;
end
%% Format string for each line of text:
% column1: double (%f)
% column2: double (%f)
% column3: double (%f)
% column4: double (%f)
% column5: double (%f)
% column6: double (%f)
% column7: double (%f)
% column8: double (%f)
% column9: double (%f)
% column10: double (%f)
% column11: double (%f)
% column12: double (%f)
% column13: double (%f)
% column14: double (%f)
% column15: double (%f)
% column16: double (%f)
% column17: double (%f)
% column18: double (%f)
% column19: double (%f)
% column20: double (%f)
% column21: double (%f)
% column22: double (%f)
% column23: double (%f)
% column24: double (%f)
% column25: double (%f)
% column26: double (%f)
% column27: double (%f)
% column28: double (%f)
% column29: double (%f)
% column30: double (%f)
% column31: double (%f)
% column32: double (%f)
% column33: double (%f)
% column34: double (%f)
% column35: double (%f)
% column36: double (%f)
% column37: double (%f)
% column38: double (%f)
% column39: double (%f)
% column40: double (%f)
% column41: double (%f)
% column42: double (%f)
% column43: double (%f)
% column44: double (%f)
% column45: double (%f)
% column46: double (%f)
% column47: double (%f)
% column48: double (%f)
% column49: double (%f)
% column50: double (%f)
% For more information, see the TEXTSCAN documentation.
formatSpec = '%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%[^\n\r]';
%% Open the text file.
fileID = fopen(filename,'r');
%% Read columns of data according to format string.
% This call is based on the structure of the file used to generate this
% code. If an error occurs for a different file, try regenerating the code
% from the Import Tool.
dataArray = textscan(fileID, formatSpec, endRow(1)-startRow(1)+1, 'Delimiter', delimiter, 'MultipleDelimsAsOne', true, 'EmptyValue' ,NaN,'HeaderLines', startRow(1)-1, 'ReturnOnError', false);
for block=2:length(startRow)
frewind(fileID);
dataArrayBlock = textscan(fileID, formatSpec, endRow(block)-startRow(block)+1, 'Delimiter', delimiter, 'MultipleDelimsAsOne', true, 'EmptyValue' ,NaN,'HeaderLines', startRow(block)-1, 'ReturnOnError', false);
for col=1:length(dataArray)
dataArray{col} = [dataArray{col};dataArrayBlock{col}];
end
end
%% Close the text file.
fclose(fileID);
%% Post processing for unimportable data.
% No unimportable data rules were applied during the import, so no post
% processing code is included. To generate code which works for
% unimportable data, select unimportable cells in a file and regenerate the
% script.
%% Create output variable
test2 = [dataArray{1:end-1}];