fill the entry of a vector with a given distance
조회 수: 2 (최근 30일)
이전 댓글 표시
Hi there
If I have a vector A of size . I want to put some value, say 1, into some certain entries. Here are the rules:
- given a distance or guard space denote by d.
- the first entry must be filled.
- then the next entry will be filled at from the last filled entry.
- For the final filled entry, we need to check if the filled entry has enough space larger than d. For example, if and , the first place to be filled is entry 1, the second place to be filled is entry 5, and there is no the third place to be filled because for the entry 9, there is no enough space left, i.e., entry 9 and entry 10 is only has one distance, which is less than .
- I want to generate multiple vectors, such that each vector only has one place to be filled. For example, if $d=3 and , then for the first vector, its first place will be filled; for the second vector, its 5th place will be filled; and there is no the third vector due to the reason of rule 4.
Is there any simple code to compute this? I am a bit struggling...
댓글 수: 0
채택된 답변
추가 답변 (1개)
Dyuman Joshi
2023년 11월 14일
M = 10;
A = [1;zeros(M-1,1)];
d = 3;
A(d+1:d+1:end-(d+1))=1
댓글 수: 2
Dyuman Joshi
2023년 11월 14일
편집: Dyuman Joshi
2023년 11월 15일
@mingcheng nie, Sure, no problem.
Here, the columns of A are the vectors, which you can access them by indexing -
M = 10;
d = 3;
vec = [1 d+1:d+1:M-(d+1)]
n = nnz(vec);
A = zeros(M, n);
for k=1:n
A(vec(k), k) = 1;
end
A
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!