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

1 view (last 30 days)
the order of matrix can be any number except 1.
  3 Comments
GHUFRAN AHMAD KHAN
GHUFRAN AHMAD KHAN on 12 Sep 2018
Edited: GHUFRAN AHMAD KHAN on 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 on 12 Sep 2018
So you already have working code? Then what is your question?

Sign in to comment.

Accepted Answer

Andrei Bobrov
Andrei Bobrov on 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 Comments
Andrei Bobrov
Andrei Bobrov on 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 on 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._

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!