REPLACE ELEMENTS OF A MATRIX

I need to replace the elements of the matrixA=[0 1;0 1} with matrix [1 0;1 0] if the value of elements in matrix A is 0 or with matrix [0 1;0 1] if the value of elements in matrix A is 1 so that i will get a matrix of size 8 x 8 .can you please help with the code.

댓글 수: 3

Alex Mcaulley
Alex Mcaulley 2019년 11월 7일
What have you tried?
geetha senthil
geetha senthil 2019년 11월 7일
A =[0 1;0 1];
a=[1 0;1 0];
b=[0 1;0 1 ];
for i = 1:2
for j = 1:2
if A (i , j ) > .5
R( i,j ) = [b] ;
else
R( i,j ) = [a] ;
end
end
end

답변 (1개)

JESUS DAVID ARIZA ROYETH
JESUS DAVID ARIZA ROYETH 2019년 11월 7일

0 개 추천

the same way :
matrixA=[0 1;0 1];
s=matrixA==0;
if0=[1 0;1 0];
if1=[0 1;0 1];
R=num2cell(matrixA);
R(s)={if0};
R(not(s))={if1};
R=cell2mat(R)

이 질문은 마감되었습니다.

제품

질문:

2019년 11월 7일

마감:

2021년 8월 20일

Community Treasure Hunt

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

Start Hunting!

Translated by