How to extract a range of values from a variable table
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Ishaan Chauhan
el 12 de Mzo. de 2020
Comentada: Ishaan Chauhan
el 16 de Feb. de 2021
For example, from the 1st number to the 6th number
0 comentarios
Respuesta aceptada
Ameer Hamza
el 12 de Mzo. de 2020
You can index into a table similar to a matrix. For example
extracted_values = myTable(:, 6:20);
convert to simple matrix
M = table2array(extracted_values)
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical 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!