How to store text printed to console?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Abdul Basith Ashraf
le 11 Nov 2019
Réponse apportée : JESUS DAVID ARIZA ROYETH
le 11 Nov 2019
The following code
>>system('WMIC CPU Get NumberOfLogicalProcessors')
prints
NumberOfLogicalProcessors
8
How can I store this number (8) in a variable?
0 commentaires
Réponse acceptée
JESUS DAVID ARIZA ROYETH
le 11 Nov 2019
solution:
[status,result]=system('WMIC CPU Get NumberOfLogicalProcessors');
number = str2double(regexp(result, '\d+', 'match'))
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Whos 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!