How to extract a range of values from a variable table
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Ishaan Chauhan
am 12 Mär. 2020
Kommentiert: Ishaan Chauhan
am 16 Feb. 2021
For example, from the 1st number to the 6th number
0 Kommentare
Akzeptierte Antwort
Ameer Hamza
am 12 Mär. 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)
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical 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!