필터 지우기
필터 지우기

Insert values for every after 4th cell in a row

조회 수: 2 (최근 30일)
Damith
Damith 2014년 5월 19일
댓글: Damith 2014년 5월 19일
Hi,
I have Z=nan(1:10000). Also, I have Matrix2=(1 x 2499) which has values. I need to insert values of Matrix2 in Z but in every 4th column (for example column numbers of Z will be 1:5:9:13 upto 9993 of Z meaning all the 2499 values of Matrix2 will be in Z. But, the dimension of Z remains same (1 x 10000). The remaining cells of Z will remain as nan. How can I do this MATLAB.
Any help is appreciated.
Thanks.

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2014년 5월 19일
z=nan(1,10000)
Matrix2=rand(1,2499); % Example
n=numel(Matrix2);
z(1:4:4*n)=Matrix2

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by