Ho to repeat a vector?
조회 수: 8 (최근 30일)
이전 댓글 표시
Hi all,
Could anybody plz be a help me what is the build-in function for:
repvec (1:5, 2)
which results in:
ans = 1 1 2 2 3 3 4 4 5 5
Thank you so much for your help :)
댓글 수: 1
답변 (4개)
Image Analyst
2012년 11월 24일
If you have the Image Processing Toolbox, you can do it this way
out = imresize(a, [1 10], 'nearest')
where a is your 1:5 vector, and the 10 is how long you want the output to be.
댓글 수: 1
Jan
2012년 11월 25일
+1: While this is not very efficient, it is a creative recycling of the Signal Processing toolbox.
Azzi Abdelmalek
2012년 11월 24일
편집: Azzi Abdelmalek
2012년 11월 24일
vec=1:5
out=[vec;vec];
out=out(:)'
If you want to repeat n times
vec=1:5
n=10;
out=repmat(vec,n,1);
out=out(:)';
댓글 수: 0
Jan
2012년 11월 25일
While I'd prefer Matt Fig's approach in real programs, here another approach, which might be interesting:
vec = 1:5;
n = 2;
index = zeros(1, length(vec) * n);
index(1:n:end) = 1;
index = cumsum(index);
result = vec(index);
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!