blob: a3ab443227d5538c146ec872592bf81575d99f16 (
plain)
1
2
3
4
5
6
|
function f = fullfileKPM(varargin)
% fullfileKPM Concatenate strings with file separator, then convert it to a/b/c
% function f = fullfileKPM(varargin)
f = fullfile(varargin{:});
f = strrep(f, '\', '/');
|