Shrediquette / PIVlab

Particle Image Velocimetry for Matlab, official repository
https://shrediquette.github.io/PIVlab/
MIT License
126 stars 30 forks source link

Opening Linux sessions on Windows machines #94

Open Shrediquette opened 9 months ago

Shrediquette commented 9 months ago

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.