about summary refs log tree commit diff
path: root/sourcecodes/bnt-master/KPMtools/safeStr.m
blob: f775a2a945113a87400c7407e659f221156d21b1 (plain)
1
2
3
4
5
function s = safeStr(s)
% Change punctuation characters to they print properly

s = strrep(s, '\', '/');
s = strrep(s, '_', '-');