access the multidimensional data using linear index
Mostrar comentarios más antiguos
i need to calculate the distance by using the route for travelling saleman problem. im having my distance value in one matrix 'DIST' and route is in another matrix 'path'
it is an 5 cities tsp problem.
DIST = [ 0 2 5 8 3
.............
............
7 6 3 4 0] it is a 5 x 5 matrix
path =[ 1 2 3 4 5
1 2 3 5 4
.......
.......
5 4 3 2 1] it is a 120 x 5 matrix
for each row of path get the value from DIST [eg:1 2 in path it will get the value 2 from the DIST]
kindly hlep me code this.....
2 comentarios
madhan ravi
el 28 de En. de 2019
Editada: madhan ravi
el 28 de En. de 2019
Can you give an explicit example of your desired output?
praveensilvi
el 28 de En. de 2019
Respuestas (2)
KSSV
el 28 de En. de 2019
0 votos
Read about ind2sub and sub2ind.
1 comentario
praveensilvi
el 28 de En. de 2019
Walter Roberson
el 28 de En. de 2019
0 votos
multidimensional indexing is not needed . Only 2d.
Categorías
Más información sobre Matrices and Arrays 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!