-
Notifications
You must be signed in to change notification settings - Fork 1
/
LoadNaturalCMIP35Index.m
54 lines (44 loc) · 1.98 KB
/
LoadNaturalCMIP35Index.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
%% Import data from text file.
% Script for importing data from the following text file:
%
% /fs/data/bengis/Papers/SandyWithoutSLR/Bitterman counterfactuals/historicalNat_CMIP35_index.dat
%
% To extend the code to different selected data or a different text file,
% generate a function instead of a script.
% Auto-generated by MATLAB on 2017/06/30 17:45:36
%% Initialize variables.
filename = '/fs/data/bengis/Papers/SandyWithoutSLR/Bitterman counterfactuals/historicalNat_CMIP35_index.dat';
startRow = 43;
%% Format for each line of text:
% column1: double (%f)
% column2: text (%s)
% column3: text (%s)
% column4: text (%s)
% For more information, see the TEXTSCAN documentation.
formatSpec = '%3f%17s%9s%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.
dataArray = textscan(fileID, formatSpec, 'Delimiter', '', 'WhiteSpace', '', 'TextType', 'string', 'HeaderLines' ,startRow-1, 'ReturnOnError', false, 'EndOfLine', '\r\n');
%% Remove white space around all cell columns.
dataArray{2} = strtrim(dataArray{2});
dataArray{3} = strtrim(dataArray{3});
dataArray{4} = strtrim(dataArray{4});
%% 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
naturalCMIP35index = table;
naturalCMIP35index.Ind = dataArray{:, 1};
naturalCMIP35index.exofmodelswhos = cellstr(dataArray{:, 2});
naturalCMIP35index.edatais = cellstr(dataArray{:, 3});
naturalCMIP35index.usedinhistorical_CMIP35_tasdat = cellstr(dataArray{:, 4});
%% Clear temporary variables
clearvars filename startRow formatSpec fileID dataArray ans;