List imat_result components and data in tabular form.
list(rst)
list(rst,(1:10)')
list(rst(1:3),[1 1; 1 2; 1 3])
list(rst,[1 inf 3; inf inf 2]);
data=list(rst,...)
LIST lists the components and data for the supplied imat_result in RST one at a time. The component columns are listed on the left, and the data column is listed on the right.
COMPONENTS is an optional vector or matrix of components. If supplied, only components and data matching COMPONENTS will be listed. If not supplied, all of the components and data will be listed. If COMPONENTS is an MxN matrix and has fewer columns than the number of component columns for a result, then all components matching the first N columns will be displayed. If you just want to match the first column, then you must pass in a column vector. Passing in an INF for any of the columns will match all values in that column.
DATA is an optional output containing a cell array the same size as RST. Each cell contains a matrix of the components and data displayed for each result.