is there a function in matlab that creates a binary repetition coder ?

9 views (last 30 days)
for example when i enter a sequence 0010110 ;when n=3
the result will be 000000111000111111000

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 25 Dec 2012
Edited: Azzi Abdelmalek on 25 Dec 2012
s='0010110'
out=repmat(s,3,1)
out=out(:)'
%or
s=[0 0 1 0 1 1 0];
out=reshape(repmat(s,3,1),1,[])
  7 Comments

Sign in to comment.

More Answers (1)

Nasser M. Abbasi
Nasser M. Abbasi on 25 Dec 2012
You did not say what is the class of 0010110, so I assume cell array.
r = {'0' '0' '1' '0' '1' '1' '0'};
n = 3;
reshape(repmat(r,n,1),1,n*numel(r))'
ans =
'0'
'0'
'0'
'0'
'0'
'0'
'1'
'1'
'1'
'0'
'0'
'0'
'1'
'1'
'1'
'1'
'1'
'1'
'0'
'0'
'0'
This is a cell. Now you can do with it any conversion you want.
--Nasser
  2 Comments
mary
mary on 25 Dec 2012
it is a 1 by n matrix .. by the way can you help me with generating such an array of zeros and ones?? thanx alot

Sign in to comment.

Categories

Find more on Matrices and Arrays in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!