About Preallocating for speed

1 Ansicht (letzte 30 Tage)
Hari
Hari am 14 Feb. 2017
Beantwortet: Alexandra Harkai am 14 Feb. 2017
What is a more efficient way of writing this code?
NumberedOD = [];
for a = 1:(N-1)
for b = (a+1) :N
NumberedOD = [NumberedOD;a, b];
end
end
My aim is to get a list of numbers like this:
1 2
1 3
.
.
1 N
2 3
2 4
.
.
  1 Kommentar
Adam
Adam am 14 Feb. 2017
Bearbeitet: Adam am 14 Feb. 2017
Purely from a pre-allocation perspective you can work out the number of elements there will be in that matrix - it is fixed and calculable so you can preallocated a zeros matrix. I'm sure there is a quicker vectorized way to do it though, I just don't have time to think about it myself right now. I'm sure someone will suggest one though.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Alexandra Harkai
Alexandra Harkai am 14 Feb. 2017
NumberedOD = nchoosek(1:N, 2);

Weitere Antworten (0)

Kategorien

Mehr zu Programming 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