Creating Matrix based on grouping of elements in cell array
Afficher commentaires plus anciens
Say I have a cell array where each cell describes a group of numbers. I want a matrix that describes these groups in a logical manner. Here is an example:
C = {[1 3], [2], [4 5 6]},
I want A = [0 0 1 0 0 0;0 0 0 0 0 0;1 0 0 0 0 0;0 0 0 0 1 1;0 0 0 1 0 1;0 0 0 1 1 0]
Thanks
1 commentaire
Chaitanya Mallela
le 18 Août 2020
Can you demostrate the logical operation which you want to perform on cell array C ?
Réponses (1)
KALYAN ACHARJYA
le 18 Août 2020
A=de2bi(cell2mat({[1 3],[2],[4 5 6]}),6)
Catégories
En savoir plus sur Logical dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!