Changeset 884 for trunk/src/read_lvm.m
- Timestamp:
- Mar 23, 2015, 11:19:28 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/read_lvm.m
r809 r884 53 53 %% get the list of channel names 54 54 Break_pos=regexp(txt,'\n','once');%find the line break 55 VarNameCell=textscan(txt(1:Break_pos- 1),'%s');% read list of variable names (until next line break)55 VarNameCell=textscan(txt(1:Break_pos-2),'%s');% read list of variable names (until next line break) 56 56 Data.ListVarName=VarNameCell{1}; 57 57 Data.ListVarName(end)=[]; %remove last name (Comment)
Note: See TracChangeset
for help on using the changeset viewer.