Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
FSL
ukbparse
Commits
bd592898
Commit
bd592898
authored
May 08, 2019
by
Paul McCarthy
🚵
Browse files
DOC: Matlab commands were broken
parent
1e8773fe
Changes
1
Hide whitespace changes
Inline
Side-by-side
README.rst
View file @
bd592898
...
...
@@ -184,7 +184,7 @@ The ``readtable`` function will potentially rename the column names to ensure
that they are are valid MATLAB identifiers. You can retrieve the original
names from the ``table`` object like so::
colnames = regexp(data.Properties.VariableDescriptions,
colnames = regexp(data.Properties.VariableDescriptions,
...
'''(.+)''', 'tokens', 'once');
colnames = vertcat(colnames{:});
...
...
@@ -192,8 +192,8 @@ names from the ``table`` object like so::
If you have used the ``--description_file`` option, you can load in the
descriptions for each column as follows::
descs = readtable('descriptions.tsv',
'FileType', 'text',
descs = readtable('descriptions.tsv',
...
'FileType', 'text',
...
'ReadVariableNames',false);
descs = descs.Var2;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment