Ältere Kommentare anzeigen
if I have a number such as 1234, how can I select the left 3 digits 123?
Akzeptierte Antwort
Weitere Antworten (2)
Walter Roberson
am 14 Jun. 2011
You can do it arithmetically with something like
floor(x ./ 10.^ceil(log10(x+1)-3))
provided the values are at least 100
Paulo Silva
am 14 Jun. 2011
n=num2str(1234)
n1=str2num(n(1:end-1))
Kategorien
Mehr zu Logical finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!