MATLAB: How to extract data from a push button such as color

guiMATLABmatlab guipushbutton

hello,
so i am having mainly two buttons in my gui one button that changes its color every time i press it but i need when i press the second button which is the save button to save the the last color clicked on the first button and and save it in matrix since each color does have a matrix, since in the normal button i used if statements according to number of clicks and this is bellow the command that i used to change a color of a button so i need to know how could i retrieve the information from first button when save button is pressed so that i can save it in a matrix . Thanks in advance.
set(handles.pushbutton65,'BackgroundColor','yellow');

Best Answer

get(handles.pushbutton65, 'BackgroundColor')
you will get an RGB triple rather than a color name.