decimal matrix to binary matrix
Mostra commenti meno recenti
How can i convert decimal value of a matrix to binary value with corect position?
Risposte (1)
Mischa Kim
il 7 Apr 2014
Kiran, try
B = arrayfun(@(ii,jj) {dec2bin(A(ii,jj))},repmat((1:size(A,1))',1,size(A,2)),repmat((1:size(A,2)),size(A,1),1));
1 Commento
Fouad BOUDJIRA
il 12 Feb 2019
but this gives a cell input , that wont work with fprntf function !!!!!
Categorie
Scopri di più su Creating and Concatenating Matrices in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!