how to sum each element in matrix

so I have this matrix and i want to sum of the each element of matrix like in this picture.how can i do that.

3 Kommentare

madhan ravi
madhan ravi am 20 Aug. 2018
You just want to sum the first two and last two numbers of each row?
Image Analyst
Image Analyst am 20 Aug. 2018
No, I can't see. What arrows? What numbers are the sum of what other two numbers? And where is the square?
mts
mts am 21 Aug. 2018
I mean red line , yellow line and black line are sum of two numbers also black rectangle is sum of three numbers and red rectangle is sum of four numbers

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Image Analyst
Image Analyst am 21 Aug. 2018

0 Stimmen

You say "I mean red line , yellow line and black line are sum of two numbers also black rectangle is sum of three numbers and red rectangle is sum of four numbers" so
redLineSumOf2 = A(1,1) + A(1,4)
yellowLineSumOf2 = A(1,1) + A(1,3)
blackLineSumOf2 = A(1,1) + A(1,2)
blackRectSumOf3 = sum(A(1, 1:3))
redRectSumOf4 = sum(A(1, 1:4))

Kategorien

Tags

Gefragt:

mts
am 20 Aug. 2018

Beantwortet:

am 21 Aug. 2018

Community Treasure Hunt

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

Start Hunting!

Translated by