What hardware Matlab Online uses?
23 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Mantas
le 15 Jan 2024
Modifié(e) : Image Analyst
le 12 Juil 2024
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 commentaires
Réponse acceptée
Dyuman Joshi
le 15 Jan 2024
As MATLAB Online runs on a Linux OS, run this command and see the output -
system('lscpu')
0 commentaires
Plus de réponses (1)
Kalhara
le 12 Juil 2024
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 commentaire
Kalhara
le 12 Juil 2024
Modifié(e) : Image Analyst
le 12 Juil 2024
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);
Voir également
Catégories
En savoir plus sur Java Client Programming dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!