MATLAB: How to extract a range of values from a variable table

columntablevalues

For example, from the 1st number to the 6th number

Best 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)