YAN Chao-Gan
Sun, 11/20/2016 - 04:19
Permalink
This is a compatibility issue of matlab 2014b.
You can revise Line 462 in DPARSFA.m
from
IDCell = textscan(fid,'%s','\n');
to
IDCell = textscan(fid,'%s\n');
YAN Chao-Gan
Sun, 11/20/2016 - 04:19
Permalink
This is a compatibility issue
This is a compatibility issue of matlab 2014b.
You can revise Line 462 in DPARSFA.m
from
IDCell = textscan(fid,'%s','\n');
to
IDCell = textscan(fid,'%s\n');