convert text like '(18)' to number
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
is there simple way to extract this text and convert to number?
0 Kommentare
Antworten (1)
Walter Roberson
am 8 Nov. 2019
S = '(18)';
value = sscanf(S, '(%f' )
You can get more complicated, like,
S = '(18,-3.8)';
value = sscanf(S, '(%f,%f)');
0 Kommentare
Siehe auch
Kategorien
Mehr zu Convert Image Type 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!