initial commit

This commit is contained in:
2026-08-07 15:56:42 +09:00
commit 91ad25aca9
1012 changed files with 159314 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
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