How do I insert data into new format based on row positions?

조회 수: 1 (최근 30일)
AV
AV 2021년 1월 7일
댓글: AV 2021년 1월 8일
Hi All - i'm having difficulty getting my data in the right format and wondered if you could help?
% Here is my data
data = [8; 7; 1; 5]
% I have the row positions of where the data sits in the desired format
datarowpositions = [0; 0; 0; 4; 0; 1; 0; 2; 0; 0; 3; 0]
% This is how I would like the data to be moved into
desired = [0; 0; 0; 5; 0; 8; 0; 7; 0; 0; 1; 0]
Thank you so much for your time.

채택된 답변

Stephen23
Stephen23 2021년 1월 7일
편집: Stephen23 2021년 1월 7일
data = [8; 7; 1; 5];
datarowpositions = [0; 0; 0; 4; 0; 1; 0; 2; 0; 0; 3; 0];
desired = datarowpositions;
desired(datarowpositions~=0) = data(nonzeros(datarowpositions))
desired = 12×1
0 0 0 5 0 8 0 7 0 0
... more rows here

추가 답변 (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