필터 지우기
필터 지우기

How do I split double-digit elements in a vector into two separate elements?

조회 수: 2 (최근 30일)
Jakob Siegel
Jakob Siegel 2016년 11월 28일
편집: Andrei Bobrov 2016년 11월 28일
I have a vector, v = [1 18 9 8], and I'm trying to split up the 18 into two separate elements so that the new vector would be new_vec = [1 1 8 9 8]. Any ideas on how to approach this?

답변 (2개)

Andrei Bobrov
Andrei Bobrov 2016년 11월 28일
편집: Andrei Bobrov 2016년 11월 28일
v = [1 18 9 8];
new_vec = sprintf('%d',v)-'0';

bio lim
bio lim 2016년 11월 28일
편집: bio lim 2016년 11월 28일
Simple approach would be:
v = [1 18 9 8];
for i = 1 : length(v)
new_vec{i} = num2str(v(i)) - '0'
end
new_vec = cell2mat(new_vec);
The output is:
new_vec =
1 1 8 9 8

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by