What hardware Matlab Online uses?
조회 수: 12 (최근 30일)
이전 댓글 표시
I am trying to find what kind of resources Matlab Online uses, since I need to provide the environment for my project, but I can't find it anywhere. Does anyone know what kind of hardware resources Matlab Online uses?
댓글 수: 0
채택된 답변
Dyuman Joshi
2024년 1월 15일
As MATLAB Online runs on a Linux OS, run this command and see the output -
system('lscpu')
댓글 수: 0
추가 답변 (1개)
Kalhara
2024년 7월 12일
According to my view of point, it is running on cloud platform which enable you to utilize a variety of hardware such as CPU, GPU, RAM and SSD. These might run on virtual machines which means the hardware is virtualized.
댓글 수: 1
Kalhara
2024년 7월 12일
편집: Image Analyst
2024년 7월 12일
MATLAB online basically runs on the linux environment.
Type this command and you will get some details about hardware you are using.
% Get CPU details
[statusCpu, cpuInfo] = system('lscpu');
disp('CPU Info:');
disp(cpuInfo);
% Get block device details
[statusBlk, blockInfo] = system('lsblk');
disp('Block Devices Info:');
disp(blockInfo);
% Get detailed hardware information (this might be extensive)
[statusHw, hwInfo] = system('lshw -short'); % No need for sudo in MATLAB Online
disp('Hardware Info:');
disp(hwInfo);
참고 항목
카테고리
Help Center 및 File Exchange에서 Java Client Programming에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!