필터 지우기
필터 지우기

How to convert a 1D vector in number?

조회 수: 4 (최근 30일)
ankita
ankita 2013년 8월 13일
e.g barcode=[8 9 0 2 0 8 0 0 1 1 4 4 5] How i get A=8902080011445 ??

채택된 답변

Evan
Evan 2013년 8월 13일
편집: Evan 2013년 8월 13일
>> barcode = [8 9 0 2 0 8 0 0 1 1 4 4 5];
>> n = polyval(barcode,10)
n =
8902080011445
Or, without polyval:
>> n = sum(barcode .* 10.^[(numel(barcode)-1):-1:0])
n =
8902080011445
Note that this assumes all elements of barcode are single-digit. If this is not the case, but you want something similar, this would work:
>> barcode = [8 9 0 2 0 8 0 0 1 1 4 86 5];
>> n = str2num(regexprep(num2str(barcode),' ',''))
n =
89020800114865
  댓글 수: 1
ankita
ankita 2013년 8월 13일
thanx we have just tried it out..

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by