How to convert row to matrix with below format????

조회 수: 1 (최근 30일)
Yuvaraj Venkataswamy
Yuvaraj Venkataswamy 2018년 6월 6일
댓글: Yuvaraj Venkataswamy 2018년 6월 6일
I need to convert row to matrix. For example, A=[1 2 3 4 5]
Need answer like this, Ans=[1 0 0 0 0; 0 1 0 0 0; 0 0 1 0 0; 0 0 0 1 0; 0 0 0 0 1]
  댓글 수: 7
Stephen23
Stephen23 2018년 6월 6일
@Yuvaraj V: I have updated my answer to match your comment.
Yuvaraj Venkataswamy
Yuvaraj Venkataswamy 2018년 6월 6일
@Stephen Cobeldick: Thank You so much

댓글을 달려면 로그인하십시오.

채택된 답변

Stephen23
Stephen23 2018년 6월 6일
편집: Stephen23 2018년 6월 6일
>> A = [3,1,1,4];
>> N = numel(A);
>> Z = zeros(N);
>> Z(sub2ind([N,N],1:N,A)) = 1
Z =
0 0 1 0
1 0 0 0
1 0 0 0
0 0 0 1
EDIT: if my example is acceptable, as you now write, then you will need something like this:
>> A = [5,1,1,4];
>> R = numel(A);
>> C = max(A);
>> Z = zeros(R,C);
>> Z(sub2ind([R,C],1:R,A)) = 1
Z =
0 0 0 0 1
1 0 0 0 0
1 0 0 0 0
0 0 0 1 0

추가 답변 (1개)

Birdman
Birdman 2018년 6월 6일
편집: Birdman 2018년 6월 6일
Something like this should work:
A=[3 1 1 4];
Ans=zeros(max(size(A)));
r=1:max(size(A));
c=A;
idx=sub2ind(size(repmat(A,max(size(A)),1)),r,c);
Ans(idx)=1
  댓글 수: 2
Stephen23
Stephen23 2018년 6월 6일
편집: Stephen23 2018년 6월 6일
@Birdman: there is a syntax error on this line:
Ans=zeros(max(size(A));
Birdman
Birdman 2018년 6월 6일
편집: Birdman 2018년 6월 6일
Yes there should be one more parenthesis. Thanks.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by