How to split numbers to A,B,C

How to split numbers to A,B,C , for 8 bits? example :
I generated : 10111001100000110011111 , (always 24 numbers,only 0,1) , command : x = randi([0 1],24,1)
and now i want to split these 24 nubers to A,B,C for 8 bits in every sequence (A,B,C). , I used command reshape(x,[8,3]) , but how to add "title" A,B,C?
Is here function/command ? i cant find it

Réponses (1)

KSSV
KSSV le 4 Déc 2018
Modifié(e) : KSSV le 4 Déc 2018

0 votes

x = randi([0 1],24,1) ;
A = reshape(x,[8,3]) ;
YOu can call A,B,C by A(:,1), A(:,2), A(:,3)

3 commentaires

Milos Kopec
Milos Kopec le 4 Déc 2018
Modifié(e) : Milos Kopec le 4 Déc 2018
Sorry I dont understand, how to call please? how to write it?
edit : i understood, command window looks like :
x =
1
1
1
1
0
0
1
0
1
1
1
0
1
0
0
0
1
1
1
1
0
1
0
1
A =
1 1 1
1 1 1
1 1 1
1 0 1
0 1 0
0 0 1
1 0 0
0 0 1
ans =
1
1
1
1
0
0
1
0
ans =
1
1
1
0
1
0
0
0
ans =
1
1
1
1
0
1
0
1
>>
KSSV
KSSV le 4 Déc 2018
Modifié(e) : KSSV le 4 Déc 2018
x = randi([0 1],24,1) ;
iwant = reshape(x,[8,3]) ;
A = iwant(:,1) ;
B = iwant(:,2) ;
C = iwant(:,3) ;
Milos Kopec
Milos Kopec le 4 Déc 2018
Thank you so much

Connectez-vous pour commenter.

Catégories

Tags

Commenté :

le 4 Déc 2018

Community Treasure Hunt

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

Start Hunting!

Translated by