whoami.m
author A.M. Thurnherr <athurnherr@yahoo.com>
Wed, 15 Apr 2015 09:55:34 +0000
changeset 16 54126cc9bb4a
parent 0 0a450563f904
permissions -rw-r--r--
IX_11beta set to Diana Cardoso for testing

function a=whoami
% function a=whoami
a='unknown';
if        length(findstr('LN',computer))>0 ...
	| length(findstr('MAC',computer))>0 ...
	| length(findstr('SOL',computer))>0
   [s,a] = system('whoami');
   b = double(a);
   a(b < 32) = []; % Get Rid of Control Characters
end