how to find and add a matrix values from another matrix???
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
suchismita
am 22 Nov. 2015
Bearbeitet: Image Analyst
am 22 Nov. 2015
I have a matrix A which holds the positions, which further i want to add from matrix B.
for example :
A=[1 2 5]
B=[ 0 0 9 0 10
0 0 9 0 10
9 9 0 9 9
0 0 9 0 10
10 10 10 10 0]
from B's first row i want to add 1st 2nd and [4] 5th elements the answer will be 0+0+10
A matrix represents the position to be added in B
0 Kommentare
Akzeptierte Antwort
dpb
am 22 Nov. 2015
Bearbeitet: Image Analyst
am 22 Nov. 2015
C=sum(B(1,A));
Open the online doc and under "Getting Started" read tutorial info on Array Indexing. I recommend working thru this introductory info in sequence to get going in Matlab quickly...
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Creating and Concatenating 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!