Код:
function GUI
figure('MenuBar','None', ...
'Name', 'Gui01', ...
'NumberTitle','Off',...
'Position',[500 500 500 500])
k=0;
for i=1:8
for j=1:8
k=k+1;
A(i,j) = uicontrol('Style', 'ToggleButton',...
'BackgroundColor', 'b',...
'Position' , [50*i 50*j 50 50],...
'Tag',int2str(k),...
'string',int2str(k),...
'CallBack',@PushButtonPressed);
end
end
function PushButtonPressed(h,eventdata)
set(A(i,j), 'BackgroundColor','r')
end
end
помогите сделать так, чтобы по нажатию на любую кнопку она окрашивалась в красный цвет,