How can I re-save variable with only certain index values?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Mary Hemler
el 5 de Jun. de 2020
Editada: Cam Salzberger
el 5 de Jun. de 2020
I have a variable, mutualInfoTotal, and I would like to re-save as another variable HD_mutualInfoTotal that only contains the values of mutualInfoTotal that correspond to the following index numbers in mutualInfoTotal: [1:4, 6, 8:10, 12, 15:18, 20:22]. How can I do this?
0 comentarios
Respuesta aceptada
Cam Salzberger
el 5 de Jun. de 2020
Editada: Cam Salzberger
el 5 de Jun. de 2020
HD_mutualInfoTotal = mutualInfoTotal([1:4, 6, 8:10, 12, 15:18, 20:22]);
There are a lot of ways to do indexing in MATLAB, and this is one of the most common. If you came up with those index values by using find, consider using logical indexing instead.
-Cam
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Matrix Indexing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!