-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patholdimportindex.m
More file actions
75 lines (64 loc) · 2.62 KB
/
Copy patholdimportindex.m
File metadata and controls
75 lines (64 loc) · 2.62 KB
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
function datasetout = importindex(workbookFile,sheetName,startRow,endRow)
%IMPORTFILE Import data from a spreadsheet
% DATA = IMPORTFILE(FILE) reads data from the first worksheet in the
% Microsoft Excel spreadsheet file named FILE and returns the data as a
% dataset array.
%
% DATA = IMPORTFILE(FILE,SHEET) reads from the specified worksheet.
%
% DATA = IMPORTFILE(FILE,SHEET,STARTROW,ENDROW) reads from the specified
% worksheet for the specified row interval(s). Specify STARTROW and
% ENDROW as a pair of scalars or vectors of matching size for
% dis-contiguous row intervals. To read to the end of the file specify an
% ENDROW of inf.
%
% Date formatted cells are converted to MATLAB serial date number format
% (datenum).
% Non-numeric cells are replaced with: NaN
%
% Example:
% Index = importfile('index.xlsx','Sheet1',2,13);
%
% See also XLSREAD.
% Auto-generated by MATLAB on 2014/04/04 15:07:22
%% Input handling
% If no sheet is specified, read first sheet
if nargin == 1 || isempty(sheetName)
sheetName = 1;
end
% If row start and end points are not specified, define defaults
if nargin <= 3
startRow = 2;
endRow = 22;
end
%% Import the data, extracting spreadsheet dates in MATLAB serial date number format (datenum)
[~, ~, raw, dateNums] = xlsread(workbookFile, sheetName, sprintf('A%d:L%d',startRow(1),endRow(1)),'' , @convertSpreadsheetDates);
for block=2:length(startRow)
[~, ~, tmpRawBlock,tmpDateNumBlock] = xlsread(workbookFile, sheetName, sprintf('A%d:L%d',startRow(block),endRow(block)),'' , @convertSpreadsheetDates);
raw = [raw;tmpRawBlock]; %#ok<AGROW>
dateNums = [dateNums;tmpDateNumBlock]; %#ok<AGROW>
end
raw(cellfun(@(x) ~isempty(x) && isnumeric(x) && isnan(x),raw)) = {''};
%% Replace date strings by MATLAB serial date numbers (datenum)
R = ~cellfun(@isequalwithequalnans,dateNums,raw) & cellfun('isclass',raw,'char'); % Find spreadsheet dates
raw(R) = dateNums(R);
%% Replace non-numeric cells with NaN
R = cellfun(@(x) ~isnumeric(x) && ~islogical(x),raw); % Find non-numeric cells
raw(R) = {NaN}; % Replace non-numeric cells
%% Create output variable
data = reshape([raw{:}],size(raw));
%% Create dataset array
datasetout = dataset;
%% Allocate imported array to column variable names
datasetout.subject = data(:,1);
datasetout.week = data(:,2);
datasetout.startTime = data(:,3);
datasetout.stopTime = data(:,4);
datasetout.bedTime = data(:,5);
datasetout.getupTime = data(:,6);
datasetout.crop1Start = data(:,7);
datasetout.crop1Stop = data(:,8);
datasetout.crop2Start = data(:,9);
datasetout.crop2Stop = data(:,10);
datasetout.crop3Start = data(:,11);
datasetout.crop3Stop = data(:,12);