-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathImport_data_from_plot_program.m
63 lines (53 loc) · 2.07 KB
/
Import_data_from_plot_program.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
T = importfile('LogPlotData.txt');
for i = 1:length(T)-1
t(i) = T(i+1) - T(i);
end
figure
plot(linspace(0,100,length(t)), t)
function T = importfile(filename, startRow, endRow)
%IMPORTFILE Import numeric data from a text file as column vectors.
% T = IMPORTFILE(FILENAME) Reads data from text file FILENAME for the
% default selection.
%
% T = IMPORTFILE(FILENAME, STARTROW, ENDROW) Reads data from rows
% STARTROW through ENDROW of text file FILENAME.
%
% Example:
% T = importfile('LogPlotData.txt',4, 2800);
%
% See also TEXTSCAN.
% Auto-generated by MATLAB on 2018/08/27 18:50:25
%% Initialize variables.
delimiter = '\t';
if nargin<=2
startRow = 4;
endRow = inf;
end
%% Format for each line of text:
% column1: double (%f)
% For more information, see the TEXTSCAN documentation.
formatSpec = '%f%*s%[^\n\r]';
%% Open the text file.
fileID = fopen(filename,'r');
%% Read columns of data according to the format.
% 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.
textscan(fileID, '%[^\n\r]', startRow(1)-1, 'WhiteSpace', '', 'ReturnOnError', false);
dataArray = textscan(fileID, formatSpec, endRow(1)-startRow(1)+1, 'Delimiter', delimiter, 'EmptyValue' ,NaN,'ReturnOnError', false, 'EndOfLine', '\r\n');
for block=2:length(startRow)
frewind(fileID);
textscan(fileID, '%[^\n\r]', startRow(block)-1, 'WhiteSpace', '', 'ReturnOnError', false);
dataArrayBlock = textscan(fileID, formatSpec, endRow(block)-startRow(block)+1, 'Delimiter', delimiter, 'EmptyValue' ,NaN,'ReturnOnError', false, 'EndOfLine', '\r\n');
dataArray{1} = [dataArray{1};dataArrayBlock{1}];
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.
%% Allocate imported array to column variable names
T = dataArray{:, 1};
end