Selecting submatrix takes long
Mostrar comentarios más antiguos
I am working on a TSP tour construction algorithm, where distances are saved in a distance matrix D, and the tour is represented as a permutation of the n cities.
It starts with a partial tour of two nodes, and from then on it keeps adding an unvisited city until the partial tour contains all cities.
To decide which city to add to the current partial tour, I need a submatrix from the D distance matrix. However, this operation, as it turns out, takes about 90% of full running time. Is there any way to speed this up?
Here is part of my code: (the line that takes most time is the one that defines 'searchArea'
while numel(tour) < n-1
searchArea = D(nodesLeft,tour); %submatrix that needs to be investigated
addCity = findCity(searchArea); %find the city that should be added
addCity = nodesLeft(addCity); %convert 'addCity' from an idx to city number
tour = insertCity(D,tour,addCity); %insert city in partial tour appropriately
nodesLeft = nodesLeft(nodesLeft~=addCity);% update which cities are left over
end
EDIT:
nodesLeft is a shrinking vector containing all numbers not yet in tour.
similarly tour is a growing vector containing all numbers 1:n except for what is in nodesLeft
2 comentarios
Walter Roberson
el 6 de En. de 2019
Are nodesLeft and tour numeric or logical?
My tests suggest that logical indexing is typically faster than numeric indexing, but that the timing for logical indexing can be pretty irregular.
Berlibur
el 6 de En. de 2019
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Matrix Indexing en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!