mirror of
https://github.com/c-sooyoung/fold_slice.git
synced 2026-09-17 18:29:08 +09:00
12 lines
170 B
Matlab
12 lines
170 B
Matlab
function [name] = get_host_name()
|
|
%Return host name
|
|
% Written by YJ for I/O
|
|
if isunix()
|
|
name = getenv('HOSTNAME');
|
|
else
|
|
name = getenv('hostname');
|
|
end
|
|
|
|
end
|
|
|