subtraction ele by ele

조회 수: 2 (최근 30일)
Offroad Jeep
Offroad Jeep 2015년 4월 5일
댓글: Image Analyst 2015년 4월 6일
hi all,
consider any two matrix A and B of 3X3 . i want to subtract every element of A from each element of B one by one. kindly tell the command please.
  댓글 수: 1
Stephen23
Stephen23 2015년 4월 6일
MATLAB allows you to do this all at once using vectorized code, rather than one-by-one. This is faster, neater, and much less buggy code!
>> A = rand(3);
>> B = rand(3);
>> A - B
ans =
-0.15016 -0.043791 0.13661
0.74818 0.14698 0.12512
-0.84361 -0.70274 0.041771

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

채택된 답변

Image Analyst
Image Analyst 2015년 4월 5일
Not sure what you mean so I'll offer the two possibilities:
result = A - B;
or
A = randi(100, 3, 3)
B = randi([1,9], 3, 3)
aVector = A(:)
bVector = B(:)
loopCounter = 1;
for k1 = 1 : length(aVector);
for k2 = 1 : length(bVector);
result(loopCounter) = aVector(k1) - bVector(k2);
loopCounter = loopCounter + 1;
end
end
% Print to command window
result
  댓글 수: 2
Offroad Jeep
Offroad Jeep 2015년 4월 6일
wonderful................
Image Analyst
Image Analyst 2015년 4월 6일
So, was it the second chunk of code (which is completely different than doing A-B) that did what you want?

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

추가 답변 (1개)

David Young
David Young 2015년 4월 5일
  댓글 수: 1
Star Strider
Star Strider 2015년 4월 5일
@4 X 4 —
David Young’s answer isn’t blank but maximally laconic. It is the ‘minus’ sign that will work for equally-sized matrices.

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

카테고리

Help CenterFile Exchange에서 Correlation and Convolution에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by