Vector operations

조회 수: 1 (최근 30일)
Steven
Steven 2011년 11월 7일
I'm looking for something that can repeat a vector without. For exemple, here a is repeated 4 times :
a = [1,2,5];
b = cellfun(a, 4);
b = [1 1 1 1 2 2 2 2 5 5 5 5];
thx

채택된 답변

Wayne King
Wayne King 2011년 11월 7일
One way:
a = [1,2,5];
b = reshape(repmat(a,4,1),12,1);
  댓글 수: 1
Andrei Bobrov
Andrei Bobrov 2011년 11월 7일
b = reshape(ones(4,1)*a,1,[]);

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by