MATLAB: How to highlight or change the color of certain values in a table

colortableuitable

I am creating about 50 (46×9)tables with the command array2table and I would really like to highlight/change the color of values that are above a certain threshold, otherwise I have to do it manually. I know how to find the indices of these values (with the command find), however I cannot find a way to let these values stand out out of the rest of the data. How can I do this or do I have to use something else than array2table like uitable? And if uitable is the solution how would I do it?

Best Answer

Presumably you are displaying your data in a GUI and so would need to use a uitable. See http://www.mathworks.com/matlabcentral/answers/25038-how-to-change-each-cell-color-in-a-uitable for an example on how to colour the cells.