create a vector of 0 and 1s that takes 1 at a fixed interval

조회 수: 1 (최근 30일)
alpedhuez
alpedhuez 2020년 8월 14일
답변: Sulaymon Eshkabilov 2020년 8월 14일
I would like to create a vector of 0s that takes 1 at a given (m) interval. For example, if m=2, the vector will be like
0,0,1,0,0,1,0,0,1,...
what will be a simpler way to create such vector?

채택된 답변

Fangjun Jiang
Fangjun Jiang 2020년 8월 14일
m=2;
N=100;
a=zeros(1,N);
a(m+1:m+1:N)=1

추가 답변 (2개)

Sean de Wolski
Sean de Wolski 2020년 8월 14일
repmat([zeros(1,m), 1],1,5)

Sulaymon Eshkabilov
Sulaymon Eshkabilov 2020년 8월 14일
Hi,
O=zeros(1, 20);
m=input('m = ');
IN=m+1:m+1:numel(O);
O(IN)=1;

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by