Can I build a gradient color table based on its values ​​in Matlab?

I have a matrix 24x2in matlab. I need to present this data in a table, but also make sure that each row is colored in different shades of colors (for example, heat maps) based on the values ​​of the second column.

Is there a matlab function that can display such tables? Or is there any other language or tool that can support such an object?

+5
source share
3 answers

Here is what finally helped me.

mathworks.com/matlabcentral/fileexchange/

( y) , , .

: . - , - .

, .

0

uitable . BackgroundColor, .

, HTML, .

+5

Here is a list of useful properties:

http://www.mathworks.com/help/techdoc/ref/uitableproperties.html

Using descriptors, you can create one shape and create separate tables, each of which contains its own BackgroundColor and Position properties.

Here is an example of several elements in one picture:

Display multiple matching objects in one drawing?

+3
source

All Articles