up sampling a matrix with non-zero elements.

조회 수: 5 (최근 30일)
Andrea
Andrea 2012년 7월 13일
Hello
I have a matrix A(100 by 100) and I want to upsample the matrix (not by zero arrays) in a way the each cell is replicated in its 3 by 3 neighborhood. So I will have a a 9 cell instead of each cell which I have had at first.
Any suggestion??
  댓글 수: 2
Conrad
Conrad 2012년 7월 13일
Considering the case where [A] = 2x2, you want something like this?
A = [1 2;...
3 4];
B = [1 1 1 2 2 2;...
1 1 1 2 2 2;...
1 1 1 2 2 2;...
3 3 3 4 4 4;...
3 3 3 4 4 4;...
3 3 3 4 4 4];
Andrea
Andrea 2012년 7월 13일
yes, exactly I want something like this. So..

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

답변 (1개)

Honglei Chen
Honglei Chen 2012년 7월 13일
편집: Honglei Chen 2012년 7월 13일
You can use kron
A = [1 2;3 4];
B = kron(A,ones(3))

카테고리

Help CenterFile Exchange에서 Multirate Signal Processing에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by