How to extract a range of values from a variable table

 Accepted Answer

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)

More Answers (0)

Categories

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!