how to get a part of a number
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
x = 1234567891011112
The output should be 56
0 Kommentare
Antworten (1)
Voss
am 8 Okt. 2022
x = 1234567891011112;
x_str = num2str(x)
x_str = x_str([5 6])
str2double(x_str)
0 Kommentare
Siehe auch
Kategorien
Mehr zu Introduction to Installation and Licensing 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!