To generate alternate 0's and 1's

7 vues (au cours des 30 derniers jours)
brijesh soni
brijesh soni le 14 Août 2019
Modifié(e) : Jos (10584) le 16 Août 2019
Say I have A=[2 4 3 4 100 253 77 10 45]. I want to generate alternate 0's and 1' such that we have 2 zeros (i.e, zeros equal to size of 1st element), then 4 ones (ones equal to the size of 2nd element) and so on
Result should be : [0 0 1 1 1 1 0 0 0 1 1 1 1 . . . .]. How to do this?
  1 commentaire
Rik
Rik le 14 Août 2019
I'm guessing RunLength should help out.

Connectez-vous pour commenter.

Réponse acceptée

Andrei Bobrov
Andrei Bobrov le 14 Août 2019
out = repelem(mod(0:numel(A)-1,2),A);
  1 commentaire
brijesh soni
brijesh soni le 15 Août 2019
Thanks for the answer !

Connectez-vous pour commenter.

Plus de réponses (2)

dpb
dpb le 14 Août 2019
One brute force way--
B=[];
for i=1:numel(A)
B=[B (1-mod(i,2))*ones(1,A(i))];
end

Jos (10584)
Jos (10584) le 14 Août 2019
Modifié(e) : Jos (10584) le 16 Août 2019
bitget(repelem(0:numel(A)-1, A), 1)
[update] I modified my original but erroneous answer bitget(repelem(1:numel(A), A), 2). In his comments below, Andrei hit a serious flaw in this one. One does need to look at the last bit!
Thanks Andrei, for pointing this out.
  4 commentaires
Andrei Bobrov
Andrei Bobrov le 16 Août 2019
Modifié(e) : Andrei Bobrov le 16 Août 2019
Hi Jos!
What am I doing wrong?
My laptop:
>> A=[2 4 3 4]
A =
2 4 3 4
>> bitget(repelem(1:numel(A), A), 2) % your variant
ans =
0 0 1 1 1 1 1 1 1 0 0 0 0
>> bitget(repelem(2:numel(A)+1, A), 1) % with change
ans =
0 0 1 1 1 1 0 0 0 1 1 1 1
>> bitget(repelem(0:numel(A)-1, A), 1) % or
ans =
0 0 1 1 1 1 0 0 0 1 1 1 1
>>
Jos (10584)
Jos (10584) le 16 Août 2019
Sorry! You're complete right to look only at the last bit!

Connectez-vous pour commenter.

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Produits


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by