-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimportSubjectInformation.m
71 lines (60 loc) · 2.25 KB
/
importSubjectInformation.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
function [ tableout ] = importSubjectInformation(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
% table.
%
% 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.
%
% Non-numeric cells are replaced with: NaN
%
% Example:
% BehaviorsobservedS9 = importfile('Behaviors
% observed.xlsx','Sheet1',1,28);
%
% See also XLSREAD.
% Auto-generated by MATLAB on 2015/04/21 12:37:30
%% 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 = 1;
endRow = 28;
end
%% Import the data
[~, ~, raw] = xlsread(workbookFile, sheetName, sprintf('A%d:K%d',startRow(1),endRow(1)));
for block=2:length(startRow)
[~, ~, tmpRawBlock] = xlsread(workbookFile, sheetName, sprintf('A%d:K%d',startRow(block),endRow(block)));
raw = [raw;tmpRawBlock]; %#ok<AGROW>
end
raw(cellfun(@(x) ~isempty(x) && isnumeric(x) && isnan(x),raw)) = {''};
cellVectors = raw(:,[1,2,3]);
raw = raw(:,[4,5,6,7,8,9,10,11]);
%% 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 table
tableout = table;
%% Allocate imported array to column variable names
tableout.SubjectID = cellVectors(:,1);
tableout.Subject_Folder_Id = cellVectors(:,2);
tableout.Gender = cellVectors(:,3);
tableout.Age = data(:,1);
tableout.Reachgrasp = data(:,2);
tableout.Reachoffer = data(:,3);
tableout.Observe = data(:,4);
tableout.Explore = data(:,5);
tableout.Imitate = data(:,6);
tableout.Rest = data(:,7);
tableout.Sum = data(:,8);