What wrong with the indexing code?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
GEORGIOS BEKAS
am 8 Feb. 2018
Kommentiert: GEORGIOS BEKAS
am 8 Feb. 2018
If I want to fill in a matrix, of which I have its indices without a for loop, how could I do it? Suppose that the (row(i),col(i)) elements to be filled are given.
value = 189;
row = [ 1 3 6 7 8 ];
col = [ 1 1 4 4 5];
B(row,col) = value
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 8 Feb. 2018
B = full( sparse(row, col, value) );
or
B = accumarray([row(:), col(:)], value);
2 Kommentare
Walter Roberson
am 8 Feb. 2018
Not at all easily with arrayfun or bsxfun as assignment through function calls is difficult and never less than ugly.
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!