How to get the name of the computer under MATLAB?
조회 수: 114 (최근 30일)
이전 댓글 표시
I want to register the name of the computer where my script is running. Is it possible to get this info?
댓글 수: 0
답변 (2개)
Ameer Hamza
2018년 4월 29일
[ret, name] = system('hostname')
name = getenv('COMPUTERNAME'); % for windows
name = getenv('HOSTNAME')
댓글 수: 1
nan
2020년 8월 18일
This does not work when running a VPN on a Mac (running Catalina); the hostname is replaced by an IP address.
참고 항목
카테고리
Help Center 및 File Exchange에서 Startup and Shutdown에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!