Left digits

조회 수: 4 (최근 30일)
joseph Frank
joseph Frank 2011년 6월 14일
if I have a number such as 1234, how can I select the left 3 digits 123?

채택된 답변

Sean de Wolski
Sean de Wolski 2011년 6월 14일
left3 = @(x)str2double(x(1:3));
left3(num2str(1234))
Perhaps?
Or so it doesn't error on numbers < 100
left3 = @(x)str2double(x(1:min(3,length(x))));
  댓글 수: 1
Matt Fig
Matt Fig 2011년 6월 14일
num2str(1234)

댓글을 달려면 로그인하십시오.

추가 답변 (2개)

Walter Roberson
Walter Roberson 2011년 6월 14일
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
Paulo Silva 2011년 6월 14일
n=num2str(1234)
n1=str2num(n(1:end-1))

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by