Sum of elements of a matrix such that no row or column repeats

1 Ansicht (letzte 30 Tage)
If i choose an element of a matrix than the next element used should be from different row and different column. If there is a nxn matrix then the sum of n elements of the matrix should come from the elements of different row and different column.

Akzeptierte Antwort

Torsten
Torsten am 21 Mai 2021
p = randperm(n);
sum = 0.0;
for k = 1:n
sum = sum + a(k,p(k));
end
where a is the nxn matrix.
  4 Kommentare
Lovish Goyal
Lovish Goyal am 21 Mai 2021
Is there any way that we can also reject all the main diaginal elements. like k should not be equal to p(k).
Torsten
Torsten am 21 Mai 2021
p = randperm(n) ;
while any(p==(1:n))
p = randperm(n);
end
% Rest is the same

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by