Could anyone help me how to change the values in array

조회 수: 1 (최근 30일)
jaah navi
jaah navi 2019년 10월 8일
댓글: Adam Danz 2019년 10월 8일
I ma having two array
A=[1 2
3 4
5 6];
B=[1 2];
I want to change the values present in rows of A which are not equal to B in the following manner
A=[1 2;
1 2;
1 2]
Could anyone please help me on it.

채택된 답변

Adam Danz
Adam Danz 2019년 10월 8일
편집: Adam Danz 2019년 10월 8일
A=[1 2
3 4
5 6];
B=[1 2];
A = repmat(B,size(A,1),1)
or
A = B .* ones(size(A))
  댓글 수: 2
jaah navi
jaah navi 2019년 10월 8일
when i used the command line A = repmat(B,size(A,1),1),it gives the following result A=[1 2;
1 2;
1 2]
IS it possible to change the rows of A one by one
First A=[1 2;
1 2;
5 6]
then A=[1 2;
1 2;
1 2]
Could you please help me on this.
Adam Danz
Adam Danz 2019년 10월 8일
That could be done in a loop, though it's not clear why this would be beneficial.
A=[1 2
3 4
5 6];
B=[1 2];
for i = 1:size(A,1)
A(i,:) = B;
end
Is that what you're looking for?

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by