How to store text printed to console?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Abdul Basith Ashraf
am 11 Nov. 2019
Beantwortet: JESUS DAVID ARIZA ROYETH
am 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 Kommentare
Akzeptierte Antwort
JESUS DAVID ARIZA ROYETH
am 11 Nov. 2019
solution:
[status,result]=system('WMIC CPU Get NumberOfLogicalProcessors');
number = str2double(regexp(result, '\d+', 'match'))
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Whos finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!