How to store text printed to console?
1 回表示 (過去 30 日間)
古いコメントを表示
Abdul Basith Ashraf
2019 年 11 月 11 日
回答済み: JESUS DAVID ARIZA ROYETH
2019 年 11 月 11 日
The following code
>>system('WMIC CPU Get NumberOfLogicalProcessors')
prints
NumberOfLogicalProcessors
8
How can I store this number (8) in a variable?
0 件のコメント
採用された回答
JESUS DAVID ARIZA ROYETH
2019 年 11 月 11 日
solution:
[status,result]=system('WMIC CPU Get NumberOfLogicalProcessors');
number = str2double(regexp(result, '\d+', 'match'))
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Whos についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!