You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I tried to perform your provided example_read.m on Matlab2015a, but failed. The error information is given as follows:
Why?
Error using arff_read (line 108)
ARFF file not recognized!
Error in example_read (line 14)
[data, relname, nomspec] = arff_read(infile);
The text was updated successfully, but these errors were encountered:
Hi @tzczsq not sure what is the problem. You didn't provide any extra information or MWE. I don't have at the moment a Matlab2015a version installed. I tested the code with version 2013a and everything is working fine.
I guess you should try to understand if something changed in the textscan function in version 2015a. PR are welcomed if you can suggest a workaround.
Hi,@tzczsq,I am faced with this issue now ,my matlab version is 2015a too.And I find if the
A = textscan(tline,'%s %s %s','Whitespace',' \t\b{},')(line 104 in arff_read function) is changed into
A = textscan(tline,'%s %s %s'). Then,everything will OK! The code can work!
Hi, I tried to perform your provided example_read.m on Matlab2015a, but failed. The error information is given as follows:
Why?
Error using arff_read (line 108)
ARFF file not recognized!
Error in example_read (line 14)
[data, relname, nomspec] = arff_read(infile);
The text was updated successfully, but these errors were encountered: