adding some single elements in matrix
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Noriham B
am 29 Jul. 2022
Kommentiert: Noriham B
am 29 Jul. 2022
Dear Prof/Dr./Sir./Maam
I have matrix A=[1 2 3 4 5] and B=[ 6 7 8 9]. I want to calculate s1=1+2+6 s2=2+3+7 s3=3+4+8 s4=4+5+9.
Is it possible to calculate the elements from different matrix like that?
Thank you in advance
0 Kommentare
Akzeptierte Antwort
sudobash
am 29 Jul. 2022
Hi!
So as per my understanding, 2 consecutive elements of A need to be added and the resulting vector needs to be added to B.
A possible solution could be like this:
A=[1 2 3 4 5];
B=[ 6 7 8 9];
Asum = A(2:end) + A(1:end-1)
final = Asum + B
Hope this solves your question.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical 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!