mirror of
https://github.com/c-sooyoung/fold_slice.git
synced 2026-09-17 23:59:11 +09:00
12 lines
173 B
Matlab
12 lines
173 B
Matlab
function [name] = get_user_name()
|
|
%Return account username
|
|
% Written by YJ for I/O
|
|
if isunix()
|
|
name = getenv('USER');
|
|
else
|
|
name = getenv('username');
|
|
end
|
|
|
|
end
|
|
|