Could anyone help me how to change the values in array

1 次查看(过去 30 天)
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