How can I add zeros between elements of a matrix?
조회 수: 82 (최근 30일)
이전 댓글 표시
I have a vector [1,2,3];
and I want to obtain [1,0,2,0,3,0];
How can this be achieved?
댓글 수: 0
답변 (2개)
Stephen23
2020년 8월 31일
>> A = [1,2,3];
Method one: indexing:
>> B = zeros(size(A).*[1,2]);
>> B(1:2:end) = A
B =
1 0 2 0 3 0
Method two: reshape:
>> B = A;
>> B(2,:) = 0;
>> B = B(:).'
B =
1 0 2 0 3 0
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!