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
yields an error, because the fileseperator is decided based on the CURRENT OS, not on the OS where the file was saved.
in sliderdisp: if ispc==1 zeichen=strfind(filepath{j,1},'\'); else zeichen=strfind(filepath{j,1},'/'); end
Should not be using ispc, but look into the the variable filepath. Difficult to implement without access to Linux.
The text was updated successfully, but these errors were encountered:
yields an error, because the fileseperator is decided based on the CURRENT OS, not on the OS where the file was saved.
in sliderdisp:
if ispc==1 zeichen=strfind(filepath{j,1},'\'); else zeichen=strfind(filepath{j,1},'/'); end
Should not be using ispc, but look into the the variable filepath. Difficult to implement without access to Linux.
The text was updated successfully, but these errors were encountered: