x-IMU-MATLAB-Library icon indicating copy to clipboard operation
x-IMU-MATLAB-Library copied to clipboard

Error in DataBaseClass.m

Open deining opened this issue 9 years ago • 0 comments

x-IMU-MATLAB-Library/ximu_matlab_library/DataBaseClass.m:

29    function figName = CreateFigName(obj)
30        [pathstr, name , ext, versn] = fileparts(obj.FileNameAppendage);
31        figName = name(2:end);
32    end

Line 30: The function fileparts has three output elements (pathstr, name , ext), not 4. The element versn has to be deleted.

See: http://de.mathworks.com/help/matlab/ref/fileparts.html

deining avatar Mar 30 '16 14:03 deining