Sum per 2 elements in vector

17 Ansichten (letzte 30 Tage)
Ann-Lara Aernoudts
Ann-Lara Aernoudts am 25 Jan. 2021
Beantwortet: Abdel am 18 Sep. 2023
Hello,
I am trying to sum my vector by 2 elements.
An example:
I have:
A= [1;2;3;4;5;6]
What I want:
A_new = [3;7;11]
Is there any way to easily code this?
I know one way via a for-loop but I was wondering if there was a more efficient way.
Thanks in advance!

Akzeptierte Antwort

Stephen23
Stephen23 am 25 Jan. 2021
Bearbeitet: Stephen23 am 25 Jan. 2021
A = [1;2;3;4;5;6];
B = A(1:2:end) + A(2:2:end)
B = 3×1
3 7 11
or more generally:
B = sum(reshape(A,2,[]),1).'
B = 3×1
3 7 11
or
B = reshape(A,2,[]).' * ones(2,1)
B = 3×1
3 7 11
or
B = cellfun(@sum,mat2cell(A,2*ones(1,3),1))
B = 3×1
3 7 11
  1 Kommentar
Ann-Lara Aernoudts
Ann-Lara Aernoudts am 25 Jan. 2021
Perfect, that works!
I'll use the more general code.
Thank you!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Abdel
Abdel am 18 Sep. 2023
The sum of the last two elements in (call the result ans6)

Kategorien

Mehr zu Operating on Diagonal Matrices finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by