Effacer les filtres
Effacer les filtres

how can i apply 1 of k coding scheme on 2D MATRIX

1 vue (au cours des 30 derniers jours)
GHUFRAN AHMAD KHAN
GHUFRAN AHMAD KHAN le 12 Sep 2018
the order of matrix can be any number except 1.
  3 commentaires
GHUFRAN AHMAD KHAN
GHUFRAN AHMAD KHAN le 12 Sep 2018
Modifié(e) : GHUFRAN AHMAD KHAN le 12 Sep 2018
the sum of each row should be 1 and each entry should be 0 or 1 is called 1 of k coding scheme and below are one question solution.
>> C = [1,1,2,3,1,3,2];
>> R = 1:numel(C);
>> A = zeros(numel(C),max(C));
>> A(sub2ind(size(A),R,C)) = 1
A = 1 0 0; 1 0 0; 0 1 0; 0 0 1; 1 0 0; 0 0 1; 0 1 0
Rik
Rik le 12 Sep 2018
So you already have working code? Then what is your question?

Connectez-vous pour commenter.

Réponse acceptée

Andrei Bobrov
Andrei Bobrov le 12 Sep 2018
C = randi([1,3],2,4)
[m,n] = size(C);
k = max(C(:));
out = zeros(n,k,m);
[ii,kk] = ndgrid(1:m,1:n);
out(sub2ind([n,k,m],kk(:),C(:),ii(:))) = 1
  5 commentaires
Andrei Bobrov
Andrei Bobrov le 12 Sep 2018
use
C = A + 1;
[m,n] = size(C);
k = max(C(:));
out = zeros(n,k,m);
[ii,kk] = ndgrid(1:m,1:n);
out(sub2ind([n,k,m],kk(:),C(:),ii(:))) = 1;
GHUFRAN AHMAD KHAN
GHUFRAN AHMAD KHAN le 12 Sep 2018
here this message is showing when i am seeing the value of the out variable.
_ Cannot display summaries of variables with more than 524288 elements._

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by