How to subtract corresponding elemets of corresponding columns of two matrices?

조회 수: 1 (최근 30일)
Hi,
I have two matrices, say a = [P1 P2 P3], while size of each (P1, P2, P3) is i.e size(P1) = 100 1, etc.
similarly other matrix b = [Q1 Q2 Q3], while size of each (Q1, Q2, Q3) is i.e size(Q1) = 100 1, etc.
I want to differentiate a - b in such a way that each element of fisrt column P1 is being subtracted from corresponding elemt of Q1 and similarly
each column of fisrt column P2 is being subtracted from corresponding elemt of Q2 and so on....
How can I write its code?

채택된 답변

Awais Saeed
Awais Saeed 2021년 8월 27일
"each column of fisrt column P1 is being subtracted from corresponding elemt of Q1". That's a confusion. You meant rows, right? If you want to subtract matrix a and b, then why not just do
a - b;
  댓글 수: 1
Nisar Ahmed
Nisar Ahmed 2021년 8월 27일
@Awais Saeed actually it is each element of fisrt column P1 is being subtracted and I corrected now. Yes, simple a - b works

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

추가 답변 (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