How to 'stretch' a matrix using a loop?

조회 수: 9 (최근 30일)
Roos de Bruijn
Roos de Bruijn 2017년 6월 11일
편집: John BG 2017년 6월 12일
Hi,
I have a 252x252 distance matrix. Now I need to reshape this matrix into a 3528x3528 matrix: so rows and columns times 14. I want the first 14 rows and columns, so a matrix of 1:14,1:14, filled with the first cell in the old matrix.
So Dnew 1:14,1:14 = Dold 1,1 Dnew 15:28,1:14 = Dold 2,1 D new 1:14,15:28 = Dold 1,2
How do I program this using a loop? Since I need to repeat it for every 1:14,1:14 matrix within my 3528x3528 matrix.
Thanks

채택된 답변

Stephen23
Stephen23 2017년 6월 11일
편집: Stephen23 2017년 6월 12일
R2015a or later: use repelem:
repelem(M,14,14)
Earlier versions: use kron:
kron(M,ones(14))
  댓글 수: 2
Roos de Bruijn
Roos de Bruijn 2017년 6월 11일
Thanks, but how do I repeat this for 63504 elements?
When I fill out Dnew60 = repelem(distancematrix,[14,14])
it does not work.
Stephen23
Stephen23 2017년 6월 11일
편집: Stephen23 2017년 6월 12일
See my edited answer. In any case, this "works" for me:
>> M = rand(252,252);
>> N = kron(M,ones(14));
>> size(N)
ans =
3528 3528
And, according to the repelem documentation which I just read, this should work for a matrix M:
repelem(M,14,14)

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

추가 답변 (1개)

John BG
John BG 2017년 6월 11일
편집: John BG 2017년 6월 12일
Hi Roos the Bruijin
the repelem syntax that you should be using is
repelem(Dold,2,14,14)
or simply
repelem(Dold,14,14)
the command repelem does not accept the syntax
repelem(Dold,[14 14])
suggested by Mr Cobeldick:
Another MATLAB improvement:
now one can directly run commands in the Internet browser, try it by opening this link
.
if you find this answer useful would you please be so kind to consider marking my answer as Accepted Answer?
To any other reader, if you find this answer useful please consider clicking on the thumbs-up vote link
thanks in advance
John BG
  댓글 수: 2
Stephen23
Stephen23 2017년 6월 12일
@John BG: thank you for pointing out the small error in my code, I have corrected it. On this forum it is certainly appreciated when others kindly point out simple and obvious syntax errors in a comment.
It is also appreciated when one takes the time to spell people's names correctly.
John BG
John BG 2017년 6월 12일
thanks Mr Cobeldick, duly noted

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

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by