Hi,
I would like to change two variables in a for loop. I have a matrix A and would like to create a new matrix that looks like:
A(1,1) 0 0 0 A(1,2) 0 0 0 A(1,3) ...
A(2,1) 0 0 0 A(2,2) 0 0 0 A(2,3) ....
Where the new matrix is 4 times as many coloums as the original matrix and the same number of rows (in the end 139 x 3774).
What is the best way to do this?
Thanks in advance for your help.

답변 (1개)

Alex Sune
Alex Sune 2019년 6월 13일

0 개 추천

Try this:
B = zeros(size(A,1),4*size(A,2));
B(:,1:4:end) = A;

댓글 수: 2

KatherineS
KatherineS 2019년 6월 13일
Thanks it worked!
Alex Sune
Alex Sune 2019년 6월 13일
Please, accept the answer to close the question

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

카테고리

도움말 센터 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

질문:

2019년 6월 13일

댓글:

2019년 6월 13일

Community Treasure Hunt

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

Start Hunting!

Translated by