How Can I Get the Windows Version Number in a Script?
8 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
MathWorks Support Team
il 5 Dic 2017
Risposto: MathWorks Support Team
il 20 Dic 2017
In a MATLAB script, how can I retrieve the computer's version of Windows?
Risposta accettata
MathWorks Support Team
il 7 Feb 2018
In order to get the Windows version, please execute the following line of code in the MATLAB Command Window:
>> [~, WindowsVersion] = system('ver')
The above command calls the ‘system’ MATLAB function. This MATLAB function tells the operating system to execute the command ‘ver’, which outputs the version of Windows on the computer. For more information about the ‘system’ MATLAB function, please refer to the following link:
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Startup and Shutdown in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!